chore: use new read_line function

This commit is contained in:
2023-12-03 10:36:28 +01:00
parent 3474b93be1
commit db2c43032f
4 changed files with 11 additions and 16 deletions

View File

@@ -6,7 +6,7 @@
#ifndef ADVENT_OF_CODE_2023_INPUT_HANDLER_H
const char* read_line(FILE *f, char **buffer, int *capacity);
char* read_line(FILE *f, char **buffer, int *capacity);
#define ADVENT_OF_CODE_2023_INPUT_HANDLER_H