zkFputs - put a string on a stream
#include "zkStdio.h"
int zkFputs(const char* s, FILE* stream);
The zkFputs() function writes the null-terminated string pointed to by s to the stream pointed to by stream. The terminating null byte is not written.
Upon successful completion, zkFputs() returns a non-negative number. Otherwise it returns EOF, sets an error indicator for the stream and errno is set to indicate the error.
Refer to zkFputc().