Deleted Added
full compact
chardata.h (104349) chardata.h (178848)
1/* chardata.h
2
3 Interface to some helper routines used to accumulate and check text
4 and attribute content.
5*/
6
1/* chardata.h
2
3 Interface to some helper routines used to accumulate and check text
4 and attribute content.
5*/
6
7#ifdef __cplusplus
8extern "C" {
9#endif
10
7#ifndef XML_CHARDATA_H
8#define XML_CHARDATA_H 1
9
10#ifndef XML_VERSION
11#include "expat.h" /* need XML_Char */
12#endif
13
14

--- 10 unchanged lines hidden (view full) ---

25void CharData_AppendXMLChars(CharData *storage, const XML_Char *s, int len);
26
27int CharData_CheckString(CharData *storage, const char *s);
28
29int CharData_CheckXMLChars(CharData *storage, const XML_Char *s);
30
31
32#endif /* XML_CHARDATA_H */
11#ifndef XML_CHARDATA_H
12#define XML_CHARDATA_H 1
13
14#ifndef XML_VERSION
15#include "expat.h" /* need XML_Char */
16#endif
17
18

--- 10 unchanged lines hidden (view full) ---

29void CharData_AppendXMLChars(CharData *storage, const XML_Char *s, int len);
30
31int CharData_CheckString(CharData *storage, const char *s);
32
33int CharData_CheckXMLChars(CharData *storage, const XML_Char *s);
34
35
36#endif /* XML_CHARDATA_H */
37
38#ifdef __cplusplus
39}
40#endif