home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / me34src.zip / me3 / util / ucase.c < prev    next >
Text File  |  1995-01-14  |  178b  |  7 lines

  1. /* Convert a string to upper case.
  2.  * C Durland    Public Domain
  3.  */
  4. void uppercase(str) char *str;    /* convert str to upper case */
  5. { for (; *str; str++) *str = toupper(*str); }
  6.   
  7.