XINU
lib
getchar.c
Go to the documentation of this file.
1
5
#include <
xinu.h
>
6
#include <
stdio.h
>
7
12
int
getchar
(
void
)
13
{
14
return
fgetc
(
stdin
);
15
}
xinu.h
全てのシステムヘッダファイルをインクルードする。
fgetc
int32 fgetc(int)
デバイス(ファイル)から文字を読み込む。
Definition:
fgetc.c:19
getchar
int getchar(void)
STDIN(標準入力)から文字を読み込む。
Definition:
getchar.c:12
stdin
#define stdin
Definition:
stdio.h:15
stdio.h
Generated by
1.8.13