X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=config%2Flkc.h;h=d871539e4b457f517627e7f3f47a86134959dc77;hb=a98a38a3d941d209b429b9a1b646506db0a6db72;hp=ff6b3e41478862d5e347671242f84bd60c41c76f;hpb=a399a82909831a941901bb311a335e0a5d5384e0;p=carl9170fw.git diff --git a/config/lkc.h b/config/lkc.h index ff6b3e4..d871539 100644 --- a/config/lkc.h +++ b/config/lkc.h @@ -1,6 +1,6 @@ +/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (C) 2002 Roman Zippel - * Released under the terms of the GNU GPL v2.0. */ #ifndef LKC_H @@ -90,6 +90,9 @@ void *xrealloc(void *p, size_t size); char *xstrdup(const char *s); char *xstrndup(const char *s, size_t n); +/* lexer.l */ +int yylex(void); + struct gstr { size_t len; char *s; @@ -108,6 +111,7 @@ const char *str_get(struct gstr *gs); /* symbol.c */ void sym_clear_all_valid(void); struct symbol *sym_choice_default(struct symbol *sym); +struct property *sym_get_range_prop(struct symbol *sym); const char *sym_get_string_default(struct symbol *sym); struct symbol *sym_check_deps(struct symbol *sym); struct property *prop_alloc(enum prop_type type, struct symbol *sym);