]> diplodocus.org Git - nmh/blobdiff - sbr/utils.c
Escape literal leading full stop in man/new.man.
[nmh] / sbr / utils.c
index 680db3788cc5e88a9ef024ff6dc59c70839025a0..d27fa81de1c8722c4c0ef5ea3d4acd4a7c2154a7 100644 (file)
@@ -426,8 +426,8 @@ void to_lower(char *s)
 }
 
 
-/* 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;
 
@@ -553,7 +553,7 @@ char *
 upcase (const char *str) {
     char *up = cpytrim (str);
 
-    ToUpper(up);
+    to_upper(up);
 
     return up;
 }