Contents|Index|Previous|Next

strupr
[force string to uppercase]

SYNOPSIS
#include<string.h>
size_t strupr(char *a);

DESCRIPTION
strupr converts each characters in the string, at a, to upper case.

RETURNS
strupr returns its argument, a.

COMPLIANCE
strupr is not widely portable.

strupr requires no supporting OS subroutines.