diff options
Diffstat (limited to 'maildrop/varlist.h')
| -rw-r--r-- | maildrop/varlist.h | 16 | 
1 files changed, 16 insertions, 0 deletions
| diff --git a/maildrop/varlist.h b/maildrop/varlist.h new file mode 100644 index 0000000..390e114 --- /dev/null +++ b/maildrop/varlist.h @@ -0,0 +1,16 @@ +#ifndef	varlist_h +#define	varlist_h + + +// +// Quick hack to implement variables - get them and set them. +// + +class Buffer; + +void UnsetVar(const Buffer &); +void SetVar(const Buffer &, const Buffer &); +const Buffer *GetVar(const Buffer &); +const char *GetVarStr(const Buffer &); +char **ExportEnv(); +#endif | 
