123456789101112131415161718192021 |
- #ifndef EDIT_H
- #define EDIT_H
- int edit_init(void (*cmd_cb)(void *ctx, char *cmd),
- void (*eof_cb)(void *ctx),
- char ** (*completion_cb)(void *ctx, const char *cmd, int pos),
- void *ctx, const char *history_file);
- void edit_deinit(const char *history_file,
- int (*filter_cb)(void *ctx, const char *cmd));
- void edit_clear_line(void);
- void edit_redraw(void);
- #endif
|