blob: ce3a92e2f243f4b94c6e66f54896effd7bebc704 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "common.h"
namespace aoc2015 {
void parse_range(const char* p1, const char* p2, int* total);
void fix_range(const char* p, const char** pe);
int day12(line_view file);
int day12_part2(line_view file);
}
|