mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +00:00
d3d16228a5
These are needed only for the parse stage. Move the prototypes into a separate header to make sure they are not used after that. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
20 lines
432 B
C
20 lines
432 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#ifndef PREPROCESS_H
|
|
#define PREPROCESS_H
|
|
|
|
enum variable_flavor {
|
|
VAR_SIMPLE,
|
|
VAR_RECURSIVE,
|
|
VAR_APPEND,
|
|
};
|
|
|
|
struct gstr;
|
|
void env_write_dep(struct gstr *gs);
|
|
void variable_add(const char *name, const char *value,
|
|
enum variable_flavor flavor);
|
|
void variable_all_del(void);
|
|
char *expand_dollar(const char **str);
|
|
char *expand_one_token(const char **str);
|
|
|
|
#endif /* PREPROCESS_H */
|