1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
-
+
|
/* *********************************************************************
Repository: https://chiselapp.com/user/nnz/repository/AdventOfCode/index
********************************************************************* */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "aocdailies.h" // prototypes for all aocYYYYdd functions!
#include "aocutils.h"
#define MAX_YEAR 2024
#define MAX_YEAR 2025
int main(int argc, char **argv) {
unsigned y = 0, d = 0;
char dataname[99];
if (argc >= 3) {
char *err;
y = strtoul(argv[1], &err, 10);
|