mnconf-common.h 397 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. #ifndef MNCONF_COMMON_H
  3. #define MNCONF_COMMON_H
  4. #include <stddef.h>
  5. #include <list_types.h>
  6. struct search_data {
  7. struct list_head *head;
  8. struct menu *target;
  9. };
  10. extern int jump_key_char;
  11. int next_jump_key(int key);
  12. int handle_search_keys(int key, size_t start, size_t end, void *_data);
  13. int get_jump_key_char(void);
  14. #endif /* MNCONF_COMMON_H */