1
Files
lecture-operating-system-de…/c_os/lib/Input.h
2022-06-05 15:25:52 +02:00

18 lines
891 B
C

/*****************************************************************************
* *
* I N P U T *
* *
*---------------------------------------------------------------------------*
* Beschreibung: Hilfsfunktion zum Warten bis auf der Tastatur die Ein- *
* -gabetaste gedrückt wird. *
* *
* Autor: Michael Schoettner, HHU, 2.05.2022 *
*****************************************************************************/
#ifndef __Input_include__
#define __Input_include__
char getch();
void waitForReturn();
#endif