Advent of Code

Check-in [cd1251ba62]
Login

Check-in [cd1251ba62]

Overview
Comment:changed header guard
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: cd1251ba626498e2449b26f2a0db8e22e1522e26783e794bca608b5e98c6a920
User & Date: nnz on 2024-12-02 20:57:16
Other Links: manifest | tags
Context
2024-12-02
21:01
use the typedef check-in: bddfe2d324 user: nnz tags: trunk
20:57
changed header guard check-in: cd1251ba62 user: nnz tags: trunk
20:53
moved big switch out of main check-in: dd0c03da2e user: nnz tags: trunk
Changes

Modified aocdailies.h from [5d1244df06] to [550e10f378].

1
2
3
4
5
6
7
8
9
#ifndef AOCDAILY_H_INCLUDED
#define AOCDAILY_H_INCLUDED

#include <stddef.h>

typedef void aocfunc(char *, size_t);
aocfunc *select(int, int);

#if 0
|
|







1
2
3
4
5
6
7
8
9
#ifndef AOCDAILIES_H_INCLUDED
#define AOCDAILIES_H_INCLUDED

#include <stddef.h>

typedef void aocfunc(char *, size_t);
aocfunc *select(int, int);

#if 0