gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 4 of 4 for fundef:getc (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/include/stdio.h - 15.7KB - 450 lines
421: 
422: #define getc(fp)        (!__isthreaded ? __sgetc(fp) : (getc)(fp))
423: 
bsd_source/lib/libc/src_bsd/stdio/getc.c - 2.1KB - 62 lines
53: int
54: getc(FILE *fp)
55: {
bsd_source/t2ex/network/net/include/netbsd/stdio.h - 17.8KB - 531 lines
502: 
503: #define getc(fp)        __sgetc(fp)
504: #define putc(x, fp)     __sputc(x, fp)
t2ex_source/include/t2ex/stdio.h - 6.8KB - 173 lines
123: IMPORT  int      fgetc(FILE *stream);
124: #define getc(fp)        fgetc(fp)
125: #define getchar()       fgetc(stdin)