aoc-2023/day5/parser.h
2023-12-25 11:39:35 +12:00

9 lines
152 B
C

#ifndef fileparser
#define fileparser
#include "structs.h"
#include "parser.h"
#include "libs/fileLoader.h"
Almanac *parseFile(OpenFile *file);
#endif