summaryrefslogtreecommitdiffstats
path: root/maildrop/varlist.h
blob: 390e114bc6b27280b09efc79d36db9d6c8ad6d22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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