#include <string.h> char *strupr(char *string);
This function converts all lower case characters in string to upper case.
string
not ANSI, not POSIX
char buf[] = "Foo!"; strupr(buf);
Go to the first, previous, next, last section, table of contents.