libexpat/expat/xmlwf/wfcheck.h

22 lines
367 B
C
Raw Normal View History

1997-11-11 00:52:10 -05:00
#include <stddef.h>
enum WfCheckResult {
wellFormed,
noMemory,
syntaxError,
1997-11-11 00:52:10 -05:00
noElements,
invalidToken,
unclosedToken,
partialChar,
tagMismatch,
duplicateAttribute,
junkAfterDocElement
};
1997-11-12 05:38:58 -05:00
enum WfCheckResult wfCheck(const char *s, size_t n,
const char **errorPtr,
unsigned long *errorLineNumber,
unsigned long *errorColNumber);
1997-11-11 00:52:10 -05:00