xmlbuff.h 172 B

123456789
  1. typedef struct XMLBuff
  2. {
  3. char *data;
  4. const char *name;
  5. int size;
  6. } XMLBuff;
  7. XMLBuff *XMLBuffNew(char *data, const char *name, int size);
  8. void XMLBuffFree(XMLBuff *in);