Overview
Comment: | changed order within dailies |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
3bac9b02b1006ba89cd9f97a5f25b0a6 |
User & Date: | nnz on 2024-12-03 13:38:19.824 |
Other Links: | manifest | tags |
Context
2024-12-03
| ||
14:19 | Added Makefile (for gcc (Debian 12.2.0-14) 12.2.0) check-in: da2606395e user: nnz tags: trunk | |
13:38 | changed order within dailies check-in: 3bac9b02b1 user: nnz tags: trunk | |
10:36 | 202403 2nd star check-in: e8b841e9cf user: nnz tags: trunk | |
Changes
Modified aocdailies.c
from [35ec64d3fd]
to [ffaafe2cdb].
1 2 3 4 5 6 7 8 9 | 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 33 34 35 36 37 38 39 40 41 42 43 | + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - | #include <stddef.h> #include "aocdailies.h" aocfunc *aocselect(int y, int d) { aocfunc *p; switch (y * 100 + d) { default: p = NULL; break; case 202403: p = aoc202403; break; case 202402: p = aoc202402; break; case 202401: p = aoc202401; break; #if 0 |
Modified aocdailies.h
from [f35543bb9f]
to [769a4a36e5].
1 2 3 4 5 6 7 8 | 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 33 34 35 36 37 38 39 40 41 | - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + | #ifndef AOCDAILIES_H_INCLUDED #define AOCDAILIES_H_INCLUDED #include <stddef.h> typedef void aocfunc(char *, size_t); aocfunc *aocselect(int, int); |