| 1 | #ifndef ENVLIST_H |
| 2 | #define ENVLIST_H |
| 3 | |
| 4 | typedef struct envlist envlist_t; |
| 5 | |
| 6 | envlist_t *envlist_create(void); |
| 7 | void envlist_free(envlist_t *); |
| 8 | int envlist_setenv(envlist_t *, const char *); |
| 9 | int envlist_unsetenv(envlist_t *, const char *); |
| 10 | char **envlist_to_environ(const envlist_t *, size_t *); |
| 11 | |
| 12 | #endif /* ENVLIST_H */ |