expr.h (406616213bb776a6e6ec69192df39ab1042690f1) expr.h (b75b0a819af9f78fc395b189cddd40f590194d20)
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
4 */
5
6#ifndef EXPR_H
7#define EXPR_H
8

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

282};
283
284extern struct file *file_list;
285extern struct file *current_file;
286struct file *lookup_file(const char *name);
287
288extern struct symbol symbol_yes, symbol_no, symbol_mod;
289extern struct symbol *modules_sym;
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
4 */
5
6#ifndef EXPR_H
7#define EXPR_H
8

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

282};
283
284extern struct file *file_list;
285extern struct file *current_file;
286struct file *lookup_file(const char *name);
287
288extern struct symbol symbol_yes, symbol_no, symbol_mod;
289extern struct symbol *modules_sym;
290extern struct symbol *sym_defconfig_list;
291extern int cdebug;
292struct expr *expr_alloc_symbol(struct symbol *sym);
293struct expr *expr_alloc_one(enum expr_type type, struct expr *ce);
294struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2);
295struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2);
296struct expr *expr_alloc_and(struct expr *e1, struct expr *e2);
297struct expr *expr_alloc_or(struct expr *e1, struct expr *e2);
298struct expr *expr_copy(const struct expr *org);

--- 32 unchanged lines hidden ---
290extern int cdebug;
291struct expr *expr_alloc_symbol(struct symbol *sym);
292struct expr *expr_alloc_one(enum expr_type type, struct expr *ce);
293struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2);
294struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2);
295struct expr *expr_alloc_and(struct expr *e1, struct expr *e2);
296struct expr *expr_alloc_or(struct expr *e1, struct expr *e2);
297struct expr *expr_copy(const struct expr *org);

--- 32 unchanged lines hidden ---