fix indentation

This commit is contained in:
Evan Burkey 2022-12-07 14:59:51 +01:00
parent bb8dbf7b5c
commit f707e08fa1
24 changed files with 77 additions and 75 deletions

View File

@ -4,7 +4,9 @@
#include "lfinput.h" #include "lfinput.h"
void advent2022day03(void) { void advent2022day03(void) {
char *input = get_input("input/2022/03"); size_t sz = 0;
printf("Solution for Day 03 of 2022 is not completed yet\n"); char **input = get_lines("input/2022/03", &sz);
free(input);
del_lines(input);
} }