NeoMutt
2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
Loading...
Searching...
No Matches
envlist.h
Go to the documentation of this file.
1
22
23
#ifndef MUTT_MUTT_ENVLIST_H
24
#define MUTT_MUTT_ENVLIST_H
25
26
#include <stdbool.h>
27
28
void
envlist_free
(
char
***envp);
29
char
**
envlist_init
(
char
**envp);
30
bool
envlist_set
(
char
***envp,
const
char
*name,
const
char
*value,
bool
overwrite);
31
bool
envlist_unset
(
char
***envp,
const
char
*name);
32
33
#endif
/* MUTT_MUTT_ENVLIST_H */
envlist_free
void envlist_free(char ***envp)
Free the private copy of the environment.
Definition
envlist.c:42
envlist_init
char ** envlist_init(char **envp)
Create a copy of the environment.
Definition
envlist.c:58
envlist_set
bool envlist_set(char ***envp, const char *name, const char *value, bool overwrite)
Set an environment variable.
Definition
envlist.c:88
envlist_unset
bool envlist_unset(char ***envp, const char *name)
Unset an environment variable.
Definition
envlist.c:140