Skip to content
Snippets Groups Projects
Commit 24a6a91c authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Use TOUPPER macro.

parent 8777f818
No related branches found
No related tags found
No related merge requests found
......@@ -847,8 +847,6 @@ char *s )
char *p;
for ( p = s; ( p != NULL ) && ( *p != '\0' ); p++ ) {
if ( islower( (unsigned char) *p )) {
*p = toupper( (unsigned char) *p );
}
*p = TOUPPER( (unsigned char) *p );
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment