aoc-2025/05/src/read_input.h

13 lines
218 B
C
Raw Normal View History

2025-12-06 16:38:09 -06:00
#ifndef READ_INPUT_H
#define READ_INPUT_H
#include <fstream>
#include <iostream>
#include <vector>
#include <string>
#include "produce_database.h"
produce_database read_input_from_file(std::string filepath);
#endif