gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 4 of 4 for fundef:putchar (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/include/stdio.h - 15.7KB - 450 lines
445: #define getchar()       getc(stdin)
446: #define putchar(x)      putc(x, stdout)
447: #define getchar_unlocked()      getc_unlocked(stdin)
bsd_source/lib/libc/src_bsd/stdio/putchar.c - 2.1KB - 59 lines
53: int
54: putchar(int c)
55: {
bsd_source/t2ex/network/net/include/netbsd/stdio.h - 17.8KB - 531 lines
508: #define getchar()       getc(stdin)
509: #define putchar(x)      putc(x, stdout)
510: 
t2ex_source/include/t2ex/stdio.h - 6.8KB - 173 lines
119: #define putc(c, fp)     fputc(c, fp)
120: #define putchar(c)      fputc(c, stdout)
121: IMPORT  int      fputs(const char *s, FILE *stream);