home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / pdc / libsrc / stringlib / toupper.c < prev   
Encoding:
Text File  |  1990-04-07  |  196 b   |  12 lines

  1. /*
  2.  * PDC I/O Library Copyright (C) 1988 by J.A. Lydiatt.
  3.  * Freely Distributable for non-commercial use.
  4.  */
  5. char toupper(c)
  6. char c;
  7. {
  8.     if ( 'a' <= c && c <= 'z' )
  9.         c += 'A' - 'a';
  10.     return c;
  11. }
  12.