diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2001-10-10 09:45:09 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2001-10-10 09:45:09 +0000 |
commit | 60087f30f3b4cf21de48f39181736e7d71e7a661 (patch) | |
tree | 61b919e33deb229486e513fe4a97e34aec7a8c65 /include | |
parent | 60416fa46e3afd3994b6b11da581c30548f0448e (diff) | |
download | libxml2-60087f30f3b4cf21de48f39181736e7d71e7a661.tar.gz |
preparing 2.4.6 release updated and rebuilt the docs fixed a number ofLIBXML_2_4_6
* configure.in: preparing 2.4.6 release
* doc/xml.html doc/html/*: updated and rebuilt the docs
* include/libxml/*.h *.c: fixed a number of teh/the widht/width typos
Daniel
Diffstat (limited to 'include')
-rw-r--r-- | include/libxml/encoding.h | 8 | ||||
-rw-r--r-- | include/libxml/parser.h | 2 | ||||
-rw-r--r-- | include/libxml/parserInternals.h | 2 | ||||
-rw-r--r-- | include/libxml/xmlwin32version.h | 8 |
4 files changed, 10 insertions, 10 deletions
diff --git a/include/libxml/encoding.h b/include/libxml/encoding.h index c20fbcee..b2ff102a 100644 --- a/include/libxml/encoding.h +++ b/include/libxml/encoding.h @@ -83,9 +83,9 @@ typedef enum { /** * xmlCharEncodingInputFunc: * @out: a pointer ot an array of bytes to store the UTF-8 result - * @outlen: the lenght of @out + * @outlen: the length of @out * @in: a pointer ot an array of chars in the original encoding - * @inlen: the lenght of @in + * @inlen: the length of @in * * Take a block of chars in the original encoding and try to convert * it to an UTF-8 block of chars out. @@ -103,9 +103,9 @@ typedef int (* xmlCharEncodingInputFunc)(unsigned char* out, int *outlen, /** * xmlCharEncodingOutputFunc: * @out: a pointer ot an array of bytes to store the result - * @outlen: the lenght of @out + * @outlen: the length of @out * @in: a pointer ot an array of UTF-8 chars - * @inlen: the lenght of @in + * @inlen: the length of @in * * Take a block of UTF-8 chars in and try to convert it to an other * encoding. diff --git a/include/libxml/parser.h b/include/libxml/parser.h index 9c4c272f..37244a6c 100644 --- a/include/libxml/parser.h +++ b/include/libxml/parser.h @@ -46,7 +46,7 @@ struct _xmlParserInput { xmlParserInputBufferPtr buf; /* UTF-8 encoded buffer */ const char *filename; /* The file analyzed, if any */ - const char *directory; /* the directory/base of teh file */ + const char *directory; /* the directory/base of the file */ const xmlChar *base; /* Base of the array to parse */ const xmlChar *cur; /* Current char being parsed */ const xmlChar *end; /* end of the arry to parse */ diff --git a/include/libxml/parserInternals.h b/include/libxml/parserInternals.h index 81ecff72..9ebc48e9 100644 --- a/include/libxml/parserInternals.h +++ b/include/libxml/parserInternals.h @@ -194,7 +194,7 @@ LIBXML_DLL_IMPORT extern const xmlChar xmlStringTextNoenc[]; LIBXML_DLL_IMPORT extern const xmlChar xmlStringComment[]; /* - * Function to finish teh work of the macros where needed + * Function to finish the work of the macros where needed */ int xmlIsBaseChar (int c); int xmlIsBlank (int c); diff --git a/include/libxml/xmlwin32version.h b/include/libxml/xmlwin32version.h index 065cbee8..9b2dbc06 100644 --- a/include/libxml/xmlwin32version.h +++ b/include/libxml/xmlwin32version.h @@ -27,21 +27,21 @@ extern void xmlCheckVersion(int version); * * the version string like "1.2.3" */ -#define LIBXML_DOTTED_VERSION "2.4.5" +#define LIBXML_DOTTED_VERSION "2.4.6" /** * LIBXML_VERSION: * * the version number: 1.2.3 value is 1002003 */ -#define LIBXML_VERSION 20405 +#define LIBXML_VERSION 20406 /** * LIBXML_VERSION_STRING: * * the version number string, 1.2.3 value is "1002003" */ -#define LIBXML_VERSION_STRING "20405" +#define LIBXML_VERSION_STRING "20406" /** * LIBXML_TEST_VERSION: @@ -49,7 +49,7 @@ extern void xmlCheckVersion(int version); * Macro to check that the libxml version in use is compatible with * the version the software has been compiled against */ -#define LIBXML_TEST_VERSION xmlCheckVersion(20405); +#define LIBXML_TEST_VERSION xmlCheckVersion(20406); #if 0 /** |