lkc.h (c252147de68cf58ba601278481e473dab432cee4) lkc.h (7cf3d73b4360e91b14326632ab1aeda4cb26308d)
1/*
2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
3 * Released under the terms of the GNU GPL v2.0.
4 */
5
6#ifndef LKC_H
7#define LKC_H
8

--- 113 unchanged lines hidden (view full) ---

122/* symbol.c */
123extern struct expr *sym_env_list;
124
125void sym_init(void);
126void sym_clear_all_valid(void);
127void sym_set_all_changed(void);
128void sym_set_changed(struct symbol *sym);
129struct symbol *sym_choice_default(struct symbol *sym);
1/*
2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
3 * Released under the terms of the GNU GPL v2.0.
4 */
5
6#ifndef LKC_H
7#define LKC_H
8

--- 113 unchanged lines hidden (view full) ---

122/* symbol.c */
123extern struct expr *sym_env_list;
124
125void sym_init(void);
126void sym_clear_all_valid(void);
127void sym_set_all_changed(void);
128void sym_set_changed(struct symbol *sym);
129struct symbol *sym_choice_default(struct symbol *sym);
130const char *sym_get_string_default(struct symbol *sym);
130struct symbol *sym_check_deps(struct symbol *sym);
131struct property *prop_alloc(enum prop_type type, struct symbol *sym);
132struct symbol *prop_get_symbol(struct property *prop);
133struct property *sym_get_env_prop(struct symbol *sym);
134
135static inline tristate sym_get_tristate_value(struct symbol *sym)
136{
137 return sym->curr.tri;

--- 38 unchanged lines hidden ---
131struct symbol *sym_check_deps(struct symbol *sym);
132struct property *prop_alloc(enum prop_type type, struct symbol *sym);
133struct symbol *prop_get_symbol(struct property *prop);
134struct property *sym_get_env_prop(struct symbol *sym);
135
136static inline tristate sym_get_tristate_value(struct symbol *sym)
137{
138 return sym->curr.tri;

--- 38 unchanged lines hidden ---