FPUTS - output a string.

(ANSI Standard)

Usage:

#include <stdio.h>
ret = fputs( s, f );

Where:

const char *s;
points to the string that is to be output.
FILE *f;
points to the file where the string is to be written.
int ret;
is zero if the write is successful, and non-zero otherwise.

Description:

"fputs" outputs a string to a file. The string "s" must end with a '\0', but this is not output.

Copyright © 1996, Thinkage Ltd.