blob: b338cc2579373ebb0558c5d615d86ec6a2ea0f49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "common.h"
namespace aoc2015 {
int count_vowels(line_view, const char*);
bool is_nice(line_view, int);
bool is_nice(line_view, const char*[], size_t);
int day5(line_view);
}
|