mirror of
https://github.com/xcat2/xNBA.git
synced 2025-08-26 13:10:39 +00: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 */
|