home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.wwiv.com
/
ftp.wwiv.com.zip
/
ftp.wwiv.com
/
pub
/
MISC
/
MN321SRC.ZIP
/
osgenupr.c
< prev
next >
Wrap
C/C++ Source or Header
|
2004-07-11
|
261b
|
16 lines
/* $Id: osgenupr.c,v 1.2 2004/07/11 09:29:14 ozzmosis Exp $ */
#include <ctype.h>
char *strupr(char *string)
{
char *mystr = string;
while (*string)
{
*string = toupper((unsigned char)*string);
string++;
}
return mystr;
}