blob: 57e43d2dc57106124fd1e10d894fb885ce970184 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _USR_PROMPT_H
#define _USR_PROMPT_H
/** @file
*
* Prompt for keypress
*
*/
FILE_LICENCE ( GPL2_OR_LATER );
extern int prompt ( const char *text, unsigned long timeout, int key );
#endif /* _USR_PROMPT_H */
|