//------------------------------------------------------------------- // File :strCaseConvert.h // Author :Alicia Thorsen // Course :CS1129 // // Prototypes for functions which convert cases //------------------------------------------------------------------- #ifndef STR_CASE_CONVERT_H #define STR_CASE_CONVERT_H //Converts a string to uppercase string toUpperCase(string); //Converts a string to lowercase string toLowerCase(string); #endif