12 lines
231 B
C
12 lines
231 B
C
#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
|