INtime SDK Help
fputs, fputws

Writes a string to the stream at the current file pointer.

#include <stdio.h>

int fputs(const char *string, FILE *stream);

#include <wchar.h>

int fputws(const wchar_t *string, FILE * stream);

Parameters

string
String to be output. The terminating null character \0 is not copied.
stream
Pointer to FILE structure.

Return Values

0 (zero).
Success.
EOF, WEOF
Failure.

Generic Text Routines

tchar.h routine _UNICODE not defined _UNICODE defined
_fputts fputs fputws

Requirements

Versions Defined in Include Link to
INtime 3.0
INtime 6.0 (for wide character and generic text versions)
intime/rt/include/stdio.h
intime/rt/include/wchar.h
intime/rt/include/tchar.h
stdio.h
wchar.h
tchar.h
clib.lib
See Also