2000-07-07 20:37:12 +00:00
|
|
|
#ifndef CMDEDIT_H
|
|
|
|
#define CMDEDIT_H
|
2000-04-12 17:49:52 +00:00
|
|
|
|
2000-12-01 19:02:24 +00:00
|
|
|
#ifdef BB_FEATURE_SH_COMMAND_EDITING
|
2000-04-12 17:49:52 +00:00
|
|
|
/* unix systems can #define POSIX to use termios, otherwise
|
|
|
|
* the bsd or sysv interface will be used
|
2000-03-16 08:09:57 +00:00
|
|
|
*/
|
|
|
|
|
2000-04-12 17:49:52 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
typedef size_t (*cmdedit_strwidth_proc)(char *);
|
|
|
|
|
2000-04-21 01:26:49 +00:00
|
|
|
void cmdedit_init(void);
|
2000-07-28 15:14:45 +00:00
|
|
|
void cmdedit_terminate(void);
|
2000-04-12 17:49:52 +00:00
|
|
|
void cmdedit_read_input(char* promptStr, char* command); /* read a line of input */
|
|
|
|
void cmdedit_setwidth(int); /* specify width of screen */
|
|
|
|
void cmdedit_histadd(char *); /* adds entries to hist */
|
|
|
|
void cmdedit_strwidth(cmdedit_strwidth_proc); /* to bind cmdedit_strlen */
|
|
|
|
|
|
|
|
extern int (*cmdedit_in_hook)(char *);
|
|
|
|
extern int (*cmdedit_out_hook)(char *);
|
|
|
|
extern int (*cmdedit_tab_hook)(char *, int, int *);
|
|
|
|
|
2000-12-01 19:02:24 +00:00
|
|
|
#endif /* BB_FEATURE_SH_COMMAND_EDITING */
|
2000-03-16 08:09:57 +00:00
|
|
|
|
2000-07-07 20:37:12 +00:00
|
|
|
#endif /* CMDEDIT_H */
|