#pragma once #include #include struct ParseResult { bool prsbl; // was parsable int val; // value which it was parsed into }; ParseResult prsi(std::string str); std::vector* lf(std::string& path); std::vector* lf(const char* path); bool lnsw(std::string& ln, int idx, const char* sw); void ssie(std::string& str, std::string repl); void pdbg(std::string& msg);