d76aa73fad
A handful of header files in QEMU are wrapped with extern "C" blocks. These are not necessary: there are C++ source files anymore in QEMU, and even where there were some, they did not include most of these files anyway. Remove them for consistency. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
15 lines
415 B
C
15 lines
415 B
C
#ifndef ENVLIST_H
|
|
#define ENVLIST_H
|
|
|
|
typedef struct envlist envlist_t;
|
|
|
|
envlist_t *envlist_create(void);
|
|
void envlist_free(envlist_t *);
|
|
int envlist_setenv(envlist_t *, const char *);
|
|
int envlist_unsetenv(envlist_t *, const char *);
|
|
int envlist_parse_set(envlist_t *, const char *);
|
|
int envlist_parse_unset(envlist_t *, const char *);
|
|
char **envlist_to_environ(const envlist_t *, size_t *);
|
|
|
|
#endif /* ENVLIST_H */
|