home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / MISC / MN325SRC.ZIP / makenl-3.2.5 / src / osgenupr.c < prev    next >
C/C++ Source or Header  |  2005-02-06  |  276b  |  16 lines

  1. /* $Id: osgenupr.c,v 1.2 2004/07/11 09:29:14 ozzmosis Exp $ */
  2.  
  3. #include <ctype.h>
  4.  
  5. char *strupr(char *string)
  6. {
  7.     char *mystr = string;
  8.  
  9.     while (*string)
  10.     {
  11.         *string = toupper((unsigned char)*string);
  12.         string++;
  13.     }
  14.     return mystr;
  15. }
  16.