Overview
Comment: | simplified command line validation |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
f66f7bf395d05e01977407137327154f |
User & Date: | nnz on 2024-12-04 16:13:50 |
Other Links: | manifest | tags |
Context
2024-12-04
| ||
18:21 | 201503 1st star check-in: 84c4349d5e user: nnz tags: trunk | |
16:13 | simplified command line validation check-in: f66f7bf395 user: nnz tags: trunk | |
15:15 | added to the ignore glob check-in: 9bfa42bf5d user: nnz tags: trunk | |
Changes
Modified aoc.c from [fb51c0a099] to [66f06825e4].
1 2 3 | 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 | - + - - - - + - - + - - + | #include <stdio.h> #include <stdlib.h> #include <string.h> |
Modified aoc2024.c from [b9786e59e9] to [4bb9424853].
1 2 3 4 5 6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | - | #include <ctype.h> #include <stdbool.h> #include <stddef.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |
︙ |