diff options
author | Daniel Veillard <veillard@src.gnome.org> | 1999-02-22 10:33:01 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 1999-02-22 10:33:01 +0000 |
commit | 1e346af5e4b3d46e521d349890a60253bc696597 (patch) | |
tree | 816093c959e40443056c2a245264d9f5e98bf8c1 /entities.c | |
parent | 63dc42c681d00a87cebbd726d4858d7d0080341c (diff) | |
download | libxml2-1e346af5e4b3d46e521d349890a60253bc696597.tar.gz |
Serious upgrade of internal subset support, setup for gtk-doc, Daniel
Diffstat (limited to 'entities.c')
-rw-r--r-- | entities.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -154,7 +154,7 @@ void xmlInitializePredefinedEntities(void) { * * Check whether this name is an predefined entity. * - * return values: NULL if not, othervise the entity + * Returns NULL if not, othervise the entity */ xmlEntityPtr xmlGetPredefinedEntity(const CHAR *name) { @@ -241,7 +241,7 @@ xmlAddDocEntity(xmlDocPtr doc, const CHAR *name, int type, * Do an entity lookup in the Dtd entity hash table and * returns the corresponding entity, if found. * - * return values: A pointer to the entity structure or NULL if not found. + * Returns A pointer to the entity structure or NULL if not found. */ xmlEntityPtr xmlGetDtdEntity(xmlDocPtr doc, const CHAR *name) { @@ -268,7 +268,7 @@ xmlGetDtdEntity(xmlDocPtr doc, const CHAR *name) { * returns the corrsponding entity, otherwise a lookup is done * in the predefined entities too. * - * return values: A pointer to the entity structure or NULL if not found. + * Returns A pointer to the entity structure or NULL if not found. */ xmlEntityPtr xmlGetDocEntity(xmlDocPtr doc, const CHAR *name) { @@ -317,7 +317,7 @@ xmlGetDocEntity(xmlDocPtr doc, const CHAR *name) { * TODO This routine is not reentrant and this will be changed, the interface * should not be modified though. * - * return values: A newly allocated string with the substitution done. + * Returns A newly allocated string with the substitution done. */ CHAR * xmlEncodeEntities(xmlDocPtr doc, const CHAR *input) { @@ -423,7 +423,7 @@ xmlEncodeEntities(xmlDocPtr doc, const CHAR *input) { * * create and initialize an empty entities hash table. * - * return values: the xmlEntitiesTablePtr just created or NULL in case of error. + * Returns the xmlEntitiesTablePtr just created or NULL in case of error. */ xmlEntitiesTablePtr xmlCreateEntitiesTable(void) { @@ -474,7 +474,7 @@ xmlFreeEntitiesTable(xmlEntitiesTablePtr table) { * * Build a copy of an entity table. * - * return values: the new xmlEntitiesTablePtr or NULL in case of error. + * Returns the new xmlEntitiesTablePtr or NULL in case of error. */ xmlEntitiesTablePtr xmlCopyEntitiesTable(xmlEntitiesTablePtr table) { |