diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/parse_kconfig/symlist.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/parse_kconfig/symlist.c b/scripts/parse_kconfig/symlist.c index 5423163..6435541 100644 --- a/scripts/parse_kconfig/symlist.c +++ b/scripts/parse_kconfig/symlist.c @@ -21,6 +21,7 @@ void symlist_add(struct symlist *sl, char *name) { sl->pos++; } +// TODO faster implementation? Maybe binary search tree? struct symlist_el *symlist_find(struct symlist *sl, char *name) { int i = 0; while (i < sl->pos) { |