fputs
---write a character string in a file or streamSynopsis
#include <stdio.h> int fputs(const char *s, FILE *fp);
Description
fputs
writes the string at s (but without the trailing null)
to the file or stream identified by fp.
Returns
If successful, the result is 0
; otherwise, the result is EOF
.
Portability
ANSI C requires fputs
, but does not specify that the result on
success must be 0
; any non-negative value is permitted.
Supporting OS subroutines required: close
, fstat
, isatty
,
lseek
, read
, sbrk
, write
.
Packaging copyright © 1988-2000 OAR Corporation Context copyright by each document's author. See Free Software Foundation for information.