XINU
Functions
putchar.c File Reference
#include <xinu.h>
#include <stdio.h>
Include dependency graph for putchar.c:

Go to the source code of this file.

Functions

int putchar (int c)
 

Function Documentation

◆ putchar()

int putchar ( int  c)

Definition at line 10 of file putchar.c.

References fputc(), and stdout.

13 {
14  return fputc(c, stdout);
15 }
#define stdout
Definition: stdio.h:16
int32 fputc(int32, int32)
文字をデバイス(ファイル)に書き込む。
Definition: fputc.c:24
Here is the call graph for this function: