2021-04-13 23:08:17 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#ifndef INTERNAL_H
|
|
|
|
#define INTERNAL_H
|
|
|
|
|
2024-02-11 20:41:05 +08:00
|
|
|
#include "hashtable.h"
|
|
|
|
|
|
|
|
#define SYMBOL_HASHSIZE (1U << 14)
|
|
|
|
|
|
|
|
extern HASHTABLE_DECLARE(sym_hashtable, SYMBOL_HASHSIZE);
|
|
|
|
|
|
|
|
#define for_all_symbols(sym) \
|
|
|
|
hash_for_each(sym_hashtable, sym, node)
|
|
|
|
|
2021-04-13 23:08:17 +08:00
|
|
|
struct menu;
|
|
|
|
|
|
|
|
extern struct menu *current_menu, *current_entry;
|
|
|
|
|
2024-02-02 23:58:08 +08:00
|
|
|
extern const char *cur_filename;
|
|
|
|
extern int cur_lineno;
|
|
|
|
|
2021-04-13 23:08:17 +08:00
|
|
|
#endif /* INTERNAL_H */
|