1
0
mirror of https://github.com/rzzzwilson/pymlac.git synced 2025-06-10 09:32:41 +00:00
2022-01-02 20:11:11 +11:00

33 lines
961 B
C
Executable File

/******************************************************************************\
* plist.h *
* ========= *
* *
* This file advertises the plist system interface. *
* *
\******************************************************************************/
#ifndef PLIST_H
#define PLIST_H
#include <stdio.h>
/******
* 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