2021-08-23 15:00:54 +02:00
|
|
|
#ifndef _LINPUT_H_
|
|
|
|
#define _LINPUT_H_
|
2021-08-21 17:39:54 +02:00
|
|
|
|
2021-08-23 15:00:54 +02:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
2021-08-21 17:39:54 +02:00
|
|
|
|
2021-08-23 15:00:54 +02:00
|
|
|
void input_setup(int bufsize, const char *prompt);
|
|
|
|
void input_setprompt (const char *prompt);
|
|
|
|
|
|
|
|
unsigned feed_lua_input(const char *buf, size_t n);
|
|
|
|
|
|
|
|
extern bool input_echo;
|
|
|
|
extern bool run_input;
|
2021-08-21 17:39:54 +02:00
|
|
|
|
|
|
|
#endif /* READLINE_APP_H */
|