home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / cpm / smallc21 / smc21lib.lbr / PUTS.C < prev    next >
Encoding:
C/C++ Source or Header  |  1985-04-01  |  256 b   |  18 lines

  1.  
  2. #define NOCCARGC
  3. #include stdio.h
  4. /*
  5. ** Write string to standard output
  6. */
  7. puts(string) char *string; {
  8.   fputs(string, stdout);
  9.   fputc('\n', stdout);
  10.   }
  11.  
  12.  
  13.  
  14. 100,
  15.     /**** { | } ~ ****/
  16.     061,062,063,064,
  17.     /**** DEL ****/
  18.     101
  19.