MicrOS
|
#include "../stdio.h"
Functions | |
int | puts (const char *str) |
Write string to stdout. More... | |
int puts | ( | const char * | str | ) |
Write string to stdout.
Writes the C string pointed by str to the standard output (stdout) and appends a newline character ('
'). The function begins copying from the address specified (str) until it reaches the terminating null character ('\0'). This terminating null-character is not copied to the stream.
str | C string to be printed. |