2 fputstr - send one or more null-terminated strings to a file
5 fputstr(fs, s_1, s_2, ...)
8 fs file stream open for writing
11 return null or error value
14 If the stream cannot be written to or an argument is of the wrong
15 type, an error value is returned.
17 Otherwise the strings s_1, s_2, ..., including the terminating
18 null characters ('\0') are written to the file stream fs.
21 > f = fopen("/tmp/junk", "w")
22 > fputstr(f, "Alpha", "Beta")
34 none - XXX - is this correct?
37 none - XXX - is this correct?
40 fgetstr, fgetfield, fgets, fputs, fopen, files, fprintf