2000-07-08 02:07:12 +05:30
|
|
|
#ifndef CMDEDIT_H
|
|
|
|
#define CMDEDIT_H
|
2000-04-12 23:19:52 +05:30
|
|
|
|
|
|
|
/* unix systems can #define POSIX to use termios, otherwise
|
|
|
|
* the bsd or sysv interface will be used
|
2000-03-16 13:39:57 +05:30
|
|
|
*/
|
|
|
|
|
2000-04-12 23:19:52 +05:30
|
|
|
#ifdef __STDC__
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
typedef size_t (*cmdedit_strwidth_proc)(char *);
|
|
|
|
|
2000-04-21 06:56:49 +05:30
|
|
|
void cmdedit_init(void);
|
2000-07-28 20:44:45 +05:30
|
|
|
void cmdedit_terminate(void);
|
2000-04-12 23:19:52 +05:30
|
|
|
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 *);
|
|
|
|
|
|
|
|
#else /* not __STDC__ */
|
|
|
|
|
2000-04-21 06:56:49 +05:30
|
|
|
void cmdedit_init(void);
|
2000-04-12 23:19:52 +05:30
|
|
|
void cmdedit_read_input(char* promptStr, char* command);
|
|
|
|
void cmdedit_setwidth();
|
|
|
|
void cmdedit_histadd();
|
|
|
|
void cmdedit_strwidth();
|
|
|
|
|
|
|
|
extern int (*cmdedit_in_hook)();
|
|
|
|
extern int (*cmdedit_out_hook)();
|
|
|
|
extern int (*cmdedit_tab_hook)();
|
|
|
|
|
|
|
|
#endif /* __STDC__ */
|
2000-03-16 13:39:57 +05:30
|
|
|
|
2000-07-08 02:07:12 +05:30
|
|
|
#endif /* CMDEDIT_H */
|