X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/b957327c2a4337dc2219ae3ea5b05de8bed38f8f..9322ba2854211794c27fae9468768b80b767c211:/sbr/utils.c diff --git a/sbr/utils.c b/sbr/utils.c index 680db378..d27fa81d 100644 --- a/sbr/utils.c +++ b/sbr/utils.c @@ -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; }