1: /*	@(#)puts.c	2.1	SCCS id keyword	*/
   2: #include    <stdio.h>
   3: 
   4: puts(s)
   5: register char *s;
   6: {
   7:     register c;
   8: 
   9:     while (c = *s++)
  10:         putchar(c);
  11:     return(putchar('\n'));
  12: }
Last modified: 1981-07-10
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 595
Valid CSS Valid XHTML 1.0 Strict