Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
putchar.c File Reference
#include <printf.h>
#include <stdio.h>
Include dependency graph for putchar.c:

Go to the source code of this file.

Functions

int putchar (int c)
 Requires a definition of _putchar() for your platform. More...
 

Function Documentation

◆ putchar()

int putchar ( int  c)

Requires a definition of _putchar() for your platform.

Definition at line 4 of file putchar.c.

5 {
6  _putchar((char)c);
7  return c;
8 }
void _putchar(char ch)
Definition: putchar_native.c:6

References _putchar().

Referenced by puts().

Here is the caller graph for this function: