]> Git Repo - J-linux.git/blob - scripts/kconfig/internal.h
Merge tag 'vfs-6.13-rc7.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
[J-linux.git] / scripts / kconfig / internal.h
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 #ifndef INTERNAL_H
3 #define INTERNAL_H
4
5 #include <hashtable.h>
6
7 #define SYMBOL_HASHSIZE         (1U << 14)
8
9 extern HASHTABLE_DECLARE(sym_hashtable, SYMBOL_HASHSIZE);
10
11 #define for_all_symbols(sym) \
12         hash_for_each(sym_hashtable, sym, node)
13
14 #define EXPR_HASHSIZE           (1U << 14)
15
16 extern HASHTABLE_DECLARE(expr_hashtable, EXPR_HASHSIZE);
17
18 void expr_invalidate_all(void);
19
20 struct menu;
21
22 extern struct menu *current_menu, *current_entry;
23
24 extern const char *cur_filename;
25 extern int cur_lineno;
26
27 #endif /* INTERNAL_H */
This page took 0.027164 seconds and 4 git commands to generate.