Search | Google it | Results 1 - 4 of 4 for fundef:putchar (0.00 seconds) |
445: #define getchar() getc(stdin) 446: #define putchar(x) putc(x, stdout) 447: #define getchar_unlocked() getc_unlocked(stdin)
53: int 54: putchar(int c) 55: {
508: #define getchar() getc(stdin) 509: #define putchar(x) putc(x, stdout) 510:
119: #define putc(c, fp) fputc(c, fp) 120: #define putchar(c) fputc(c, stdout) 121: IMPORT int fputs(const char *s, FILE *stream);