home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_c / edlib.lzh / EDLIB / MAN / STOUPPER < prev    next >
Encoding:
Text File  |  1991-08-16  |  481 b   |  27 lines

  1. STOUPPER(3)                Library Functions               STOUPPER(3)
  2.  
  3.  
  4.  
  5. NAME
  6.      stoupper - convert a string to only upper case characters
  7.  
  8. SYNOPSIS
  9.      #include <edlib.h>
  10.  
  11.      char *stoupper(str)
  12.      char *str;
  13.  
  14. DESCRIPTION
  15.      Stoupper takes a pointer to a null terminated string and
  16.      converts each lower case character into its upper case
  17.      equivalent. All other characters are left untouched.
  18.  
  19. AUTHOR
  20.      Edwin Hoogerbeets 01/08/88
  21.  
  22. SEE ALSO
  23.      stolower(3)
  24.  
  25.  
  26.  
  27.