Format: AllC/C++CSSTextshell script Advanced Search
118: IMPORT int fputc(int c, FILE *stream); 119: #define putc(c, fp) fputc(c, fp) 120: #define putchar(c) fputc(c, stdout) 121: IMPORT int fputs(const char *s, FILE *stream);