12 lines
205 B
C++
12 lines
205 B
C++
#ifndef AOC_AOC_HPP
|
|
#define AOC_AOC_HPP
|
|
|
|
#include <vector>
|
|
#include <string_view>
|
|
|
|
namespace aoc {
|
|
auto entry([[maybe_unused]]std::vector<std::string_view> const& args) -> void;
|
|
}
|
|
|
|
#endif // !AOC_AOC_HPP
|