Home | History | Annotate | Download | only in Include

Lines Matching defs:stdout

324 #define stdout  (&__sF[1])    /**< FILE reference for the STanDard OUTput stream. */

912 /** Formatted print to stdout.
914 The printf function is equivalent to fprintf with stdout used as the output stream.
1008 /** Formatted print, to stdout, from an argument list.
1185 /** Write a character to stdout.
1187 The putchar function is equivalent to putc with stdout as the Stream argument.
1189 @param[in] C The character to be written to stdout.
1192 error occurs, the error indicator for stdout is set and putchar
1197 /** Write String to stdout.
1200 pointed to by stdout, and appends a new-line character to the output. The
1203 @param[in] String A pointer to the character string to write to stdout.
1610 #define putchar(x) putc(x, stdout)
1618 #define putchar_unlocked(x) putc_unlocked(x, stdout)