working commit

This commit is contained in:
2026-05-15 15:30:29 +02:00
parent 879481feab
commit 886684e224
28 changed files with 629 additions and 81 deletions
+13
View File
@@ -0,0 +1,13 @@
#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