aocpp/lib/include/aocpp/Parsing.hpp
2022-11-20 13:52:18 -08:00

13 lines
213 B
C++

#ifndef AOCPP_PARSING_HPP_
#define AOCPP_PARSING_HPP_
#include <string>
#include <vector>
namespace aocpp {
auto SplitOn(std::string const& stuff, std::string const& sep) -> std::vector<std::string>;
}
#endif