mirror of
https://github.com/ipxe/ipxe
synced 2025-12-28 02:28:57 +03:00
15 lines
221 B
C
15 lines
221 B
C
|
|
#ifndef _USR_PROMPT_H
|
||
|
|
#define _USR_PROMPT_H
|
||
|
|
|
||
|
|
/** @file
|
||
|
|
*
|
||
|
|
* Prompt for keypress
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
FILE_LICENCE ( GPL2_OR_LATER );
|
||
|
|
|
||
|
|
extern int prompt ( const char *text, unsigned int wait_ms, int key );
|
||
|
|
|
||
|
|
#endif /* _USR_PROMPT_H */
|