How could one convert a string to upper case. The examples I have found from googling only have to deal with chars.
You can simply use this in C++17
for(auto i : str) putchar(toupper(i));