SilverScreen Solid Modeler

strupr

strupr

Previous topic Next topic  

strupr

Previous topic Next topic JavaScript is required for the print function  

StandardCLibrary

 

char *strupr( char *s )

 

char *s;         /* a string */

 

 

 




Synopsis

#include "string.h"

 

The strupr function converts each lowercase letter in s into its equivalent uppercase letter.

 

 

Parameters

s is a null-terminated string.

 

 

Return Value

strupr returns s .

 

 

See Also

strlwr