2024-12-27 05:30:39 -05:00
|
|
|
#ifndef AOC_H
|
|
|
|
#define AOC_H
|
2024-11-19 20:04:10 -05:00
|
|
|
|
2024-12-27 05:30:39 -05:00
|
|
|
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);
|
2024-12-01 00:14:56 -05:00
|
|
|
|
2024-12-27 05:30:39 -05:00
|
|
|
#endif
|