Initial implementation of wget, from Chip Rosenthal <chip@laserlink.net>.
[oweals/busybox.git] / cmdedit.h
1 #ifndef CMDEDIT_H
2 #define CMDEDIT_H
3
4 /* unix systems can #define POSIX to use termios, otherwise 
5  * the bsd or sysv interface will be used 
6  */
7
8 #ifdef __STDC__ 
9 #include <stddef.h>
10
11 typedef size_t (*cmdedit_strwidth_proc)(char *);
12
13 void cmdedit_init(void);
14 void cmdedit_terminate(void);
15 void cmdedit_read_input(char* promptStr, char* command);                /* read a line of input */
16 void cmdedit_setwidth(int);             /* specify width of screen */
17 void cmdedit_histadd(char *);           /* adds entries to hist */
18 void cmdedit_strwidth(cmdedit_strwidth_proc);   /* to bind cmdedit_strlen */
19
20 extern int      (*cmdedit_in_hook)(char *);
21 extern int      (*cmdedit_out_hook)(char *);
22 extern int      (*cmdedit_tab_hook)(char *, int, int *);
23
24 #else   /* not __STDC__ */
25
26 void cmdedit_init(void);
27 void cmdedit_read_input(char* promptStr, char* command);
28 void cmdedit_setwidth();
29 void cmdedit_histadd();
30 void cmdedit_strwidth();
31
32 extern int      (*cmdedit_in_hook)();
33 extern int      (*cmdedit_out_hook)();
34 extern int      (*cmdedit_tab_hook)();
35
36 #endif /* __STDC__ */
37
38 #endif /* CMDEDIT_H */