Next: strverscmp—version string compare, Previous: strtok, strtok_r, strsep—get next token from a string, Up: Strings and Memory (string.h) [Contents][Index]
strupr—force string to uppercaseSynopsis
#include <string.h> char *strupr(char *a);
Description
strupr converts each character in the string at a to
uppercase.
Returns
strupr returns its argument, a.
Portability
strupr is not widely portable.
strupr requires no supporting OS subroutines.