I have a string interface (const char* value, uint32_t length) which I need to manipulate.
1) I have to make it all lower case
2) I have to remove all characters found after the ‘;’ semicolon
Can anyone help point me to any C/C++ libraries that can do this? without me having to iterate through the char array.
Thanks in advance
1)
2)