Files
stvpn/stringaux.hpp
T
2026-05-15 15:30:29 +02:00

14 lines
284 B
C++

#ifndef STRINGAUX_HPP
#define STRINGAUX_HPP
#include <string>
#include <vector>
#include <expected>
std::vector<std::string> split(std::string s, std::string delimiters);
std::string trim(std::string& source);
std::expected<int, std::string> strtoint (std::string source);
#endif