gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 4 of 4 for fundef:putc (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/include/stdio.h - 15.7KB - 450 lines
428:  */
429: #define putc(x, fp)     (!__isthreaded ? __sputc(x, fp) : (putc)(x, fp))
430: #endif /* __BSD_VISIBLE */
bsd_source/lib/libc/src_bsd/stdio/putc.c - 2.3KB - 68 lines
59: int
60: putc(int c, FILE *fp)
61: {
bsd_source/t2ex/network/net/include/netbsd/stdio.h - 17.8KB - 531 lines
503: #define getc(fp)        __sgetc(fp)
504: #define putc(x, fp)     __sputc(x, fp)
505: #endif /* !_REENTRANT && !_PTHREADS */
t2ex_source/include/t2ex/stdio.h - 6.8KB - 173 lines
118: IMPORT  int      fputc(int c, FILE *stream);
119: #define putc(c, fp)     fputc(c, fp)
120: #define putchar(c)      fputc(c, stdout)