Files

8 lines
100 B
C
Raw Permalink Normal View History

2026-05-04 18:18:55 -05:00
#ifndef LSORT_H
#define LSORT_H
2026-05-06 05:46:50 -05:00
#include "types.h"
2026-05-05 01:21:11 -05:00
2026-05-06 05:46:50 -05:00
int check_sorted(lsort_array_i* array);
2026-05-04 18:18:55 -05:00
#endif