cli.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * Common hostapd/wpa_supplicant command line interface functionality
  3. * Copyright (c) 2004-2016, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #ifndef CLI_H
  9. #define CLI_H
  10. #include "utils/list.h"
  11. extern const char *const cli_license;
  12. extern const char *const cli_full_license;
  13. struct cli_txt_entry {
  14. struct dl_list list;
  15. char *txt;
  16. };
  17. void cli_txt_list_free(struct cli_txt_entry *e);
  18. void cli_txt_list_flush(struct dl_list *list);
  19. struct cli_txt_entry *
  20. cli_txt_list_get(struct dl_list *txt_list, const char *txt);
  21. void cli_txt_list_del(struct dl_list *txt_list, const char *txt);
  22. void cli_txt_list_del_addr(struct dl_list *txt_list, const char *txt);
  23. void cli_txt_list_del_word(struct dl_list *txt_list, const char *txt,
  24. int separator);
  25. int cli_txt_list_add(struct dl_list *txt_list, const char *txt);
  26. int cli_txt_list_add_addr(struct dl_list *txt_list, const char *txt);
  27. int cli_txt_list_add_word(struct dl_list *txt_list, const char *txt,
  28. int separator);
  29. char ** cli_txt_list_array(struct dl_list *txt_list);
  30. int get_cmd_arg_num(const char *str, int pos);
  31. int write_cmd(char *buf, size_t buflen, const char *cmd, int argc,
  32. char *argv[]);
  33. #define max_args 10
  34. int tokenize_cmd(char *cmd, char *argv[]);
  35. #endif /* CLI_H */