home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume5 / smallc / part3 / lib / puts.c < prev    next >
Encoding:
C/C++ Source or Header  |  1986-11-30  |  105 b   |  7 lines

  1. #include <stdio.h>
  2. #define EOL 10
  3. puts(str) char *str;{
  4.     while (*str) putchar(*str++);
  5.     putchar(EOL);
  6.     }
  7.