1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include <ctype.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "aocdailies.h"
#include "aocutils.h"
#if 0
/* === aocYYYYDD =======================================================
===================================================================== */
void aocYYYYDD(char *data, size_t len) {
(void)len; // unused argument
}
#endif
/* === aoc202510 =======================================================
===================================================================== */
void aoc202510(char *data, size_t len) {
(void)len; // unused arguments
(void)data;
}
|
|
>
>
>
>
>
>
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#include <ctype.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "aocdailies.h"
#include "aocutils.h"
#if 0
/* === aocYYYYDD =======================================================
===================================================================== */
void aocYYYYDD(char *data, size_t len) {
(void)len; // unused arguments
(void)data;
}
#endif
/* === aoc202511 =======================================================
===================================================================== */
void aoc202511(char *data, size_t len) {
(void)len; // unused arguments
(void)data;
}
/* === aoc202510 =======================================================
===================================================================== */
void aoc202510(char *data, size_t len) {
(void)len; // unused arguments
(void)data;
}
|