So I need to write a function to convert all lowercase character s's to uppercase and leave all other characters unchanged. Then return the transformed string. Everything I have read implements the <algorithm> header. Which we are not aloud to do. It's a practice assignment, not really for a grade but its frustrating me. Heres my code. Any help is appreciated.
// Function uppercase converts each lowercase character of s to its
// uppercase equivalent; all other characters are left unchanged. The
// transformed string is returned to the calling function.
string uppercase(string s);