home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource4 / 273_01 / upcase.cc < prev    next >
Text File  |  1987-09-27  |  222b  |  11 lines

  1. #include <ctype.h>
  2. upcase(char *str)
  3. /* This will convert the string pointed to by *str to uppercase */
  4. {
  5.    while (*str) {
  6.       if (islower(*str))
  7.          *str = toupper(*str);
  8.       str++; }
  9.    return(0);
  10. }
  11.