}
-/* ToUpper runs all of s through toupper(3). */
-void ToUpper(char *s)
+/* to_upper runs all of s through toupper(3). */
+void to_upper(char *s)
{
unsigned char *b;
upcase (const char *str) {
char *up = cpytrim (str);
- ToUpper(up);
+ to_upper(up);
return up;
}