home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / enterprs / cpm / utils / s / smc21lib.lzh / PUTCHAR.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-25  |  256 b   |  15 lines

  1.  
  2. #define NOCCARGC
  3. #include stdio.h
  4. /*
  5. ** Write character to standard output
  6. */
  7. putchar(ch) int ch; {
  8.   return(fputc(ch, stdout));
  9.   }
  10.  
  11. 093,094,095,096,097,098,099,100,
  12.     /**** { | } ~ ****/
  13.     061,062,063,064,
  14.     /**** DEL ****/
  15.     101
  16.