Add Linux support, write input functions

This commit is contained in:
2021-09-01 15:07:47 -07:00
parent 983657cf3e
commit e6bedd1d66
9 changed files with 128 additions and 11 deletions

View File

@ -0,0 +1,11 @@
#ifndef ADVENT_H_INPUT
#define ADVENT_H_INPUT
#include <stdlib.h>
char *get_input(const char *);
char **get_lines(const char *, size_t *);
int *get_ints(const char *, size_t *);
void del_lines(char **);
#endif // ADVENT_H_INPUT