forked from KolibriOS/kolibrios
ffca41d7f9
- Added ungetc, tollower and toupper to export - Fixed ungetc emu - Fixed file io functions - Update file_io test git-svn-id: svn://kolibrios.org@8730 a494cfbc-eb01-0410-851d-a64ba20cac60
13 lines
161 B
C
13 lines
161 B
C
#include <stdio.h>
|
|
#include "conio.h"
|
|
|
|
int getchar(void) {
|
|
__con_init();
|
|
char c = 0;
|
|
__con_gets(&c, 2);
|
|
if (c == 0) {
|
|
c = EOF;
|
|
}
|
|
return c;
|
|
}
|