You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
9 lines
335 B
9 lines
335 B
#pragma once |
|
|
|
#include <cstring> |
|
#include <commun.h> |
|
|
|
std::string string_to_lower(std::string& str); |
|
std::string string_to_upper(std::string& str); |
|
std::unique_ptr<std::vector<std::string>> string_split(std::string& str, std::string delimiter, int cpt = -1); |
|
void string_trim(std::string& str, const std::string& whitespace = " \b\0"); |