12 lines
219 B
C
12 lines
219 B
C
#ifndef AOC_H
|
|
#define AOC_H
|
|
|
|
char *aoc_read_input(void);
|
|
char *aoc_read_line(void);
|
|
void aoc_reset_read_line(void);
|
|
void aoc_free(void);
|
|
int aoc_line_count(void);
|
|
int aoc_sort_int(const void *a, const void *b);
|
|
|
|
#endif
|