/******************************************************************************\ * plist.h * * ========= * * * * This file advertises the plist system interface. * * * \******************************************************************************/ #ifndef PLIST_H #define PLIST_H #include /****** * Typedefs for user. ******/ typedef void *PLIST; /****** * Function prototypes. ******/ PLIST PlistCreate(void); void PlistInsert(PLIST plist, char *name, char *value); char *PlistFind(PLIST plist, char *name); PLIST PlistDestroy(PLIST plist); void PlistDump(PLIST plist, FILE *output); #endif