blob: b2883f665992da3ca01e4205fb1a3fabdcbc5a4b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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 *);
char **envlist_to_environ(const envlist_t *, size_t *);
#endif /* ENVLIST_H */
|