X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;ds=inline;f=Usermode%2Finclude%2Freadline.h;fp=Usermode%2Finclude%2Freadline.h;h=0000000000000000000000000000000000000000;hb=4bd23d4ae51bd5cb92b449bcd66e0d2de88c7fc9;hp=555a24b77ffd50626c5521f5c44d9b1ce90b299e;hpb=f1be22d04cb96b70d08b6ed79eb1725364cffb35;p=tpg%2Facess2.git diff --git a/Usermode/include/readline.h b/Usermode/include/readline.h deleted file mode 100644 index 555a24b7..00000000 --- a/Usermode/include/readline.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Acess2 Library Suite - * - Readline - * - * Text mode entry with history - */ -#ifndef _READLINE_H_ -#define _READLINE_H_ - -// === TYPES === -typedef struct sReadline tReadline; - -// === STRUCTURES === - -// === FUNCTIONS === -/** - * - */ -extern tReadline *Readline_Init(int UseHistory); - -/** - * \brief Read a line from stdin - * \return Heap string containing the command string (to be free'd by the caller) - */ -extern char *Readline(tReadline *Info); - -/** - * \brief Read a line from stdin (non-blocking) - * \return Heap string containing the command string (to be free'd by the caller) - */ -extern char *Readline_NonBlock(tReadline *Info); - -#endif