forked from HACKERCHANNEL/benzin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xml.h
executable file
·23 lines (19 loc) · 1.17 KB
/
xml.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/******************************************************************************
* xml.h *
* Part of Benzin *
* Handles some XML stuff. *
* Copyright (C)2009 SquidMan (Alex Marshall) <[email protected]> *
* Copyright (C)2009 megazig (Stephen Simpson) <[email protected]> *
* Copyright (C)2009 Matt_P (Matthew Parlane) *
* Copyright (C)2009 comex *
* Copyright (C)2009 booto *
* All Rights Reserved, HACKERCHANNEL. *
******************************************************************************/
#ifndef _XML_H_
#define _XML_H_
char * /* O - Buffer */
get_value(mxml_node_t *node, /* I - Node to get */
void *buffer, /* I - Buffer */
int buflen); /* I - Size of buffer */
const char *whitespace_cb(mxml_node_t *node, int where);
#endif //_XML_H_