5 * Text mode entry with history
11 typedef struct sReadline tReadline;
19 extern tReadline *Readline_Init(int UseHistory);
22 * \brief Read a line from stdin
23 * \return Heap string containing the command string (to be free'd by the caller)
25 extern char *Readline(tReadline *Info);
28 * \brief Read a line from stdin (non-blocking)
29 * \return Heap string containing the command string (to be free'd by the caller)
31 extern char *Readline_NonBlock(tReadline *Info);