gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 4 of 4 for fundef:getchar (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/include/stdio.h - 15.7KB - 450 lines
444: 
445: #define getchar()       getc(stdin)
446: #define putchar(x)      putc(x, stdout)
bsd_source/lib/libc/src_bsd/stdio/getchar.c - 2.0KB - 58 lines
54: int
55: getchar(void)
56: {
bsd_source/t2ex/network/net/include/netbsd/stdio.h - 17.8KB - 531 lines
507: 
508: #define getchar()       getc(stdin)
509: #define putchar(x)      putc(x, stdout)
t2ex_source/include/t2ex/stdio.h - 6.8KB - 173 lines
124: #define getc(fp)        fgetc(fp)
125: #define getchar()       fgetc(stdin)
126: IMPORT  char     *fgets(char *s, int size, FILE *stream);