scripts/kconfig/preprocess.h

Source file repositories/reference/linux-study-clean/scripts/kconfig/preprocess.h

File Facts

System
Linux kernel
Corpus path
scripts/kconfig/preprocess.h
Extension
.h
Size
432 bytes
Lines
20
Domain
Support Tooling And Documentation
Bucket
scripts
Inferred role
Support Tooling And Documentation: implementation source
Status
source implementation candidate

Why This File Exists

Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.

Dependency Surface

Detected Declarations

Annotated Snippet

#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 */

Annotation

Implementation Notes