diff options
| author | Daniel Veillard <veillard@src.gnome.org> | 2003-02-18 21:12:46 +0000 |
|---|---|---|
| committer | Daniel Veillard <veillard@src.gnome.org> | 2003-02-18 21:12:46 +0000 |
| commit | d431074c46d3b056b88c1be778960cb5ce43fe0f (patch) | |
| tree | f188b2118a8243f5028be0a059b6c6baf4ffdd07 /include | |
| parent | 2df2de225aeb241cbf7eb895698498ef3366d5d4 (diff) | |
| download | android_external_libxml2-d431074c46d3b056b88c1be778960cb5ce43fe0f.tar.gz android_external_libxml2-d431074c46d3b056b88c1be778960cb5ce43fe0f.tar.bz2 android_external_libxml2-d431074c46d3b056b88c1be778960cb5ce43fe0f.zip | |
float/double check bugfix exported a function for NMTOKEN validation add a
* xmlschemastypes.c: float/double check bugfix
* tree.c include/libxml/tree.h: exported a function for NMTOKEN
validation
* xmlreader.c: add a TODO for Jody
* relaxng.c: bugfix bugfix bugfix
found 373 test schemas: 300 success 73 failures
found 529 test instances: 507 success 10 failures
* result/relaxng/*: updated the results
Daniel
Diffstat (limited to 'include')
| -rw-r--r-- | include/libxml/tree.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/libxml/tree.h b/include/libxml/tree.h index d77d704e..8521a319 100644 --- a/include/libxml/tree.h +++ b/include/libxml/tree.h @@ -538,9 +538,11 @@ LIBXML_DLL_IMPORT extern int xmlSaveNoEmptyTags; /* save empty tags as <empty></ LIBXML_DLL_IMPORT extern int xmlDefaultBufferSize; /* default buffer size */ #endif -int xmlValidateNCName (const xmlChar *value, int space); -int xmlValidateQName (const xmlChar *value, int space); -int xmlValidateName (const xmlChar *value, int space); +int xmlValidateNCName (const xmlChar *value, int space); +int xmlValidateQName (const xmlChar *value, int space); +int xmlValidateName (const xmlChar *value, int space); +int xmlValidateNMToken (const xmlChar *value, int space); + /* * Handling Buffers. */ |
