9 void removeCharacters(
char *dest,
const char *source,
const char *charsToRemove,
size_t destSize);
12 void toLower(
char *dest,
const char *source,
size_t size);
15 void toUpper(
char *dest,
const char *source,
size_t size);
18 bool findChar(
const char *source,
char c);
21 size_t strlcpy(
char *dst,
const char *src,
size_t size);
23 size_t strlcpy(
char *dst, std::string src,
size_t size);
26 std::vector<std::string>
split(
const char *source,
char c);
bool findChar(const char *source, char c)
void toLower(char *dest, const char *source, size_t size)
void toUpper(char *dest, const char *source, size_t size)
void removeCharacters(char *dest, const char *source, const char *charsToRemove, size_t destSize)
size_t strlcpy(char *dst, const char *src, size_t size)
std::vector< std::string > split(const char *source, char c)