KnowledgeBase Archive

An Archive of Early Microsoft KnowledgeBase Articles

View on GitHub

Q41198: How ungetch() Works with getch() and getche()

Article: Q41198
Product(s): See article
Version(s): 5.00 5.10 | 5.10
Operating System(s): MS-DOS | OS/2
Keyword(s): ENDUSER | s_quickc | mspl13_c
Last Modified: 16-MAY-1989

The Microsoft C run-time function ungetch() pushes back a character
to be read in by the next call to getch() or getche().

The character is pushed back to a special memory buffer defined in
getch(). The function getch() or getche() checks the special buffer
before it calls the DOS interrupt function to read input from the real
keyboard buffer. If the special buffer is not empty, it returns the
value in the buffer without calling the interrupt 21h function.

ungetch() does not put the character back to the keyboard buffer.

Pushing a character back to the keyboard buffer can be done on some
machines by calling BIOS keyboard service, interrupt 16H function 05H
with scan code in the register CH and the character's ASCII code in
the register CL.

Note: This BIOS function does not exist on many machines -- be sure to
check the machine you're running on before you try to use this
function.

THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Copyright Microsoft Corporation 1986-2002.