1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-10-21 14:53:44 +03:00

applied 42 documentation patches from Charlie Bozeman. Regenerated the

* *.c include/libxml/*.h doc/html/*: applied 42 documentation
  patches from Charlie Bozeman. Regenerated the HTML docs.
Daniel
This commit is contained in:
Daniel Veillard
2001-12-31 16:16:02 +00:00
parent 7f9a6806ed
commit cbaf399537
70 changed files with 3535 additions and 3170 deletions

View File

@@ -1,5 +1,5 @@
/*
* entities.h : interface for the XML entities handking
* entities.h : interface for the XML entities handling
*
* See Copyright for the status of this software.
*
@@ -35,7 +35,7 @@ typedef enum {
typedef struct _xmlEntity xmlEntity;
typedef xmlEntity *xmlEntityPtr;
struct _xmlEntity {
void *_private; /* for Corba, must be first ! */
void *_private; /* application data */
xmlElementType type; /* XML_ENTITY_DECL, must be second ! */
const xmlChar *name; /* Attribute name */
struct _xmlNode *children; /* NULL */
@@ -57,8 +57,8 @@ struct _xmlEntity {
};
/*
* ALl entities are stored in an hash table
* there is 2 separate hash tables for global and parmeter entities
* All entities are stored in an hash table
* there is 2 separate hash tables for global and parameter entities
*/
typedef struct _xmlHashTable xmlEntitiesTable;