Differences From Artifact [89d1cc6d94]:
- File aocdailies.c — part of check-in [81b926f5cf] at 2024-12-02 22:39:33 on branch trunk — removed unnecessary comment (user: nnz, size: 1368) [annotate] [blame] [check-ins using]
To Artifact [5d832336de]:
- File aocdailies.c — part of check-in [65953b2da6] at 2024-12-02 22:43:07 on branch trunk — renamed function select to aocselect (user: nnz, size: 1371) [annotate] [blame] [check-ins using]
1 2 3 | #include <stddef.h> #include "aocdailies.h" | | | 1 2 3 4 5 6 7 8 9 10 11 | #include <stddef.h> #include "aocdailies.h" aocfunc *aocselect(int y, int d) { aocfunc *p; switch (y * 100 + d) { default: p = NULL; break; #if 0 case 201501: p = aoc201501; break; case 201502: p = aoc201502; break; |
︙ | ︙ |