diff options
Diffstat (limited to 'sorters.h')
-rw-r--r-- | sorters.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,6 @@ +#ifndef SORTERS_H +#define SORTERS_H + #include <stddef.h> void assert_sorted(int *buffer, size_t size); @@ -17,3 +20,5 @@ extern const struct sorter { const char *name; sorterfn func; } sorters[]; + +#endif |