MicrOS
putchar.c File Reference
#include "../stdio.h"

Functions

int putchar (int character)
 Write character to stdout. More...
 

Function Documentation

◆ putchar()

int putchar ( int  character)

Write character to stdout.

Writes a character to the standard output (stdout).

Parameters
characterThe int promotion of the character to be written.
Returns
On success, the character written is returned. If a writing error occurs, EOF is returned and the error indicator is set.