wpa_supplicant / hostapd  2.5
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
edit.h
Go to the documentation of this file.
1 
5 #ifndef EDIT_H
6 #define EDIT_H
7 
8 int edit_init(void (*cmd_cb)(void *ctx, char *cmd),
9  void (*eof_cb)(void *ctx),
10  char ** (*completion_cb)(void *ctx, const char *cmd, int pos),
11  void *ctx, const char *history_file, const char *ps);
12 void edit_deinit(const char *history_file,
13  int (*filter_cb)(void *ctx, const char *cmd));
14 void edit_clear_line(void);
15 void edit_redraw(void);
16 
17 #endif /* EDIT_H */