home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource4
/
221_01
/
fputs.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1979-12-31
|
256 b
|
12 lines
#include stdio.h
fputs(s, iop) /* put string s in file iop */
char *s;
int iop;
{
int c;
while(c = *s++)
putc(c, iop);
}