48 lines
1.2 KiB
C
48 lines
1.2 KiB
C
#pragma once
|
|
/*
|
|
* Copyright (C) 2024 Brett Terpstra
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef DAYS_H
|
|
#define DAYS_H
|
|
|
|
void run_day1();
|
|
void run_day2();
|
|
void run_day3();
|
|
void run_day4();
|
|
void run_day5();
|
|
void run_day6();
|
|
void run_day7();
|
|
void run_day8();
|
|
void run_day9();
|
|
void run_day10();
|
|
void run_day11();
|
|
void run_day12();
|
|
void run_day13();
|
|
void run_day14();
|
|
void run_day15();
|
|
void run_day16();
|
|
void run_day17();
|
|
void run_day18();
|
|
void run_day19();
|
|
void run_day20();
|
|
void run_day21();
|
|
void run_day22();
|
|
void run_day23();
|
|
void run_day24();
|
|
|
|
#endif //DAYS_H
|