|
wpa_supplicant / hostapd 2.0
|
00001 00010 #ifndef EDIT_H 00011 #define EDIT_H 00012 00013 int edit_init(void (*cmd_cb)(void *ctx, char *cmd), 00014 void (*eof_cb)(void *ctx), 00015 char ** (*completion_cb)(void *ctx, const char *cmd, int pos), 00016 void *ctx, const char *history_file); 00017 void edit_deinit(const char *history_file, 00018 int (*filter_cb)(void *ctx, const char *cmd)); 00019 void edit_clear_line(void); 00020 void edit_redraw(void); 00021 00022 #endif /* EDIT_H */ 00023
1.7.3