Everything

puts


Write character string to SFR

[Classification]

Standard library

[Syntax]

#include <stdio.h>

int __far puts(const char __near *s);

int __far _COM_puts_f(const char __far *s);

[Return value]

0 is returned.

When the putchar function returns -1, this function returns -1.

[Description]

This function writes string s to SFR using the putchar function. The end-of-string null character is not write, but a new-line character is written in its place.