1: #if defined(LIBC_SCCS) && !defined(lint)
   2: static char sccsid[] = "@(#)puts.c	5.2 (Berkeley) 3/9/86";
   3: #endif LIBC_SCCS and not lint
   4: 
   5: #include    <stdio.h>
   6: 
   7: puts(s)
   8: register char *s;
   9: {
  10:     register c;
  11: 
  12:     while (c = *s++)
  13:         putchar(c);
  14:     return(putchar('\n'));
  15: }

Defined functions

puts defined in line 7; used 448 times

Defined variables

sccsid defined in line 2; never used
Last modified: 1986-03-10
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 2227
Valid CSS Valid XHTML 1.0 Strict