Synopsis
#include <stdio_c.h>
int puts_c(__code const char *s);
Description

puts_c writes the string pointed to by s to the standard output stream using putchar and appends a new-line character to the output. The terminating null character is not written.

puts_c returns EOF if a write error occurs; otherwise it returns a nonnegative value.

Portability

puts_c is an extension provided by CrossWorks.

See also

putchar, puts