XINU
Functions
getchar.c File Reference

STDIN(標準入力)から文字を読み込む。 More...

#include <xinu.h>
#include <stdio.h>
Include dependency graph for getchar.c:

Go to the source code of this file.

Functions

int getchar (void)
 STDIN(標準入力)から文字を読み込む。 More...
 

Detailed Description

STDIN(標準入力)から文字を読み込む。

Definition in file getchar.c.

Function Documentation

◆ getchar()

int getchar ( void  )

STDIN(標準入力)から文字を読み込む。

Returns
成功時は読み込んだ文字、異常時はEOFを返す。

Definition at line 12 of file getchar.c.

References fgetc(), and stdin.

13 {
14  return fgetc(stdin);
15 }
int32 fgetc(int)
デバイス(ファイル)から文字を読み込む。
Definition: fgetc.c:19
#define stdin
Definition: stdio.h:15
Here is the call graph for this function: