home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / enterprs / cpm / utils / s / smc21lib.lzh / STRCHR.C < prev   
Encoding:
Text File  |  1993-03-25  |  256 b   |  18 lines

  1.  
  2. /*
  3. ** return pointer to 1st occurence of c in str, else 0
  4. */
  5. strchr(str, c) char *str, c; {
  6.   while(*str) {
  7.     if(*str == c) return (str);
  8.     ++str;
  9.     }
  10.   return (0);
  11.   }
  12. ;
  13.     }
  14.   }
  15.  
  16.  
  17.  
  18. CCDECI, CCINCI, CCDDPI, CCPDPI, CCPINT, PINTè