Searched defs:getchar (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/
H A Dgetchar.c2 Implementation of a subroutine version of the macro getchar,
44 NetBSD: getchar.c,v 1.9 2003/08/07 16:43:27 agc Exp
45 getchar.c 8.1 (Berkeley) 6/4/93
53 #undef getchar macro
57 getchar( void ) function
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dconsole.c72 * has input available using that console's console_driver::getchar()
78 * int key = iskey() ? getchar() : -1;
85 int getchar ( void ) { function
91 if ( console && console->getchar ) {
92 character = console->getchar ();
129 * call returns True, you can then safely call getchar() without
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dconsole.h13 * putchar(), getchar() and iskey() delegate to the individual console
36 * The console's putchar(), getchar() and iskey() methods will
64 int ( *getchar ) ( void ); member in struct:console_driver
73 * This should return True if a subsequent call to getchar()
100 * .getchar = my_getchar,
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Dstdio.h44 int getchar (void);
1142 The getchar function is equivalent to getc with the argument stdin.
1145 is at end-of-file, the end-of-file indicator is set and getchar
1146 returns EOF. Otherwise, getchar returns the next character from
1148 set and getchar returns EOF.
1150 int getchar (void);
1609 #define getchar() getc(stdin) macro

Completed in 48 milliseconds