aoc/src/2018/18.c

11 lines
214 B
C
Raw Normal View History

2021-07-14 13:50:33 -07:00
#include <stdio.h>
2021-09-01 15:08:54 -07:00
#include <stdlib.h>
2021-07-14 13:50:33 -07:00
#include "input.h"
void advent2018day18(void) {
2021-09-01 15:08:54 -07:00
char *input = get_input("input/2018/18");
2021-07-14 13:50:33 -07:00
printf("Solution for Day 18 of 2018 is not completed yet\n");
2021-09-01 15:08:54 -07:00
free(input);
2021-07-14 13:50:33 -07:00
}