Annotation of researchv9/libc/stdio/fputs.c, revision 1.1

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

unix.superglobalmegacorp.com

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