/* $Id: envlist.h,v 5.2 2012/09/06 00:01:21 ksb Exp $ * we just keep these in a list, linear insert is OK for <10 things (ksb) */ typedef struct ELnode { short int fused; char *pcvar; char *pcvalue; struct ELnode *pELnext; } ENVLIST; extern ENVLIST *SaveEList(ENVLIST *); extern ENVLIST *PutEList(ENVLIST *, char *, char *); extern int ScanEList(ENVLIST *, int (*)()); extern char *GetEList(ENVLIST *, char *);