home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 206.lha / C-Functions / strupp.c < prev    next >
C/C++ Source or Header  |  1996-02-14  |  190b  |  11 lines

  1.  
  2. #include <exec/types.h>
  3.  
  4. VOID strupp(pc)     /* Make a string upper case only */
  5. UBYTE *pc;
  6.    {
  7. register int i=0;
  8.    while (pc[i] = upper(pc[i])) i++;    /* Do untill /0 is found */
  9.    }
  10.  
  11.