diff options
Diffstat (limited to 'clients/xzwrite/associate.h')
-rw-r--r-- | clients/xzwrite/associate.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/clients/xzwrite/associate.h b/clients/xzwrite/associate.h new file mode 100644 index 0000000..a6ff2dc --- /dev/null +++ b/clients/xzwrite/associate.h @@ -0,0 +1,18 @@ +#ifndef _Associate_h +#define _Associate_h + +#include <stdio.h> +#include <dyn.h> + +#define AA_OK -1000 +#define AA_FAILED -1001 +#define AA_NOTFOUND -1002 + +typedef struct _array_elements { + char *index; + char *value; +} AElementRec, *AElement; + +typedef DynObject AArray; + +#endif /* _Associate_h */ |