Annotation of 3BSD/libc/stdio/fputs.c, revision 1.1

1.1     ! root        1: #include       <stdio.h>
        !             2: 
        !             3: fputs(s, iop)
        !             4: register char *s;
        !             5: register FILE *iop;
        !             6: {
        !             7:        register r;
        !             8:        register c;
        !             9: 
        !            10:        while (c = *s++)
        !            11:                r = putc(c, iop);
        !            12:        return(r);
        !            13: }

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.