home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 1 / GoldFishApril1994_CD1.img / d1xx / d164 / c-functions / strupp.c < prev    next >
C/C++ Source or Header  |  1988-11-22  |  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.