← index
countsort/count.h
Source: C2x.Examples/src/countsort/count.h
#ifndef _COUNT_H_
#define _COUNT_H_

#include <stddef.h>

bool count_sort(int *data, int size, int ik);

#endif