Searched defs:getc (Results 1 - 2 of 2) sorted by relevance

/bionic/libc/stdio/
H A Dgetc.c1 /* $OpenBSD: getc.c,v 1.6 2005/08/08 08:05:36 espie Exp $ */
49 * A subroutine version of the macro getc.
51 #undef getc macro
54 getc(FILE *fp) function
/bionic/libc/include/
H A Dstdio.h102 * This ensures that the getc and putc macros (or inline functions) never
121 int _r; /* read space left for getc() */
143 unsigned char _nbuf[1]; /* guarantee a getc() buffer */
250 int getc(FILE *);
438 #define getc(fp) (!__isthreaded ? __sgetc(fp) : (getc)(fp)) macro
461 #define getchar() getc(stdin)

Completed in 60 milliseconds