NAME

zkFputs - put a string on a stream

SYNOPSIS

#include "zkStdio.h"

int zkFputs(const char* s, FILE* stream);

DESCRIPTION

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.

RETURN VALUE

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.

ERRORS

Refer to zkFputc().