gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 4 of 4 for funcall:getc (0.01 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/fgetc.c - 1.8KB - 40 lines
38: {
39:         return (getc(fp));
40: }
bsd_source/lib/libc/src_bsd/stdio/getchar.c - 2.0KB - 58 lines
56: {
57:         return (getc(stdin));
58: }
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)