mirror of https://github.com/PatrickLipka/tt.git
10 lines
215 B
C
10 lines
215 B
C
|
#ifndef STRING_UTILS_H
|
||
|
#define STRING_UTILS_H
|
||
|
#include <string>
|
||
|
|
||
|
std::string trim(const std::string &str);
|
||
|
std::string space_to_underscore(std::string str);
|
||
|
std::string underscore_to_space(std::string str);
|
||
|
|
||
|
#endif
|