mirror of
https://github.com/ipxe/ipxe
synced 2025-12-29 19:38:37 +03:00
13 lines
163 B
C
13 lines
163 B
C
#ifndef _READLINE_H
|
|
#define _READLINE_H
|
|
|
|
/** @file
|
|
*
|
|
* Minmal readline
|
|
*
|
|
*/
|
|
|
|
extern char * __malloc readline ( const char *prompt );
|
|
|
|
#endif /* _READLINE_H */
|