From aea8d44d49a3b461194cc72b28cdbf2be51da8d8 Mon Sep 17 00:00:00 2001 From: David Sommerseth Date: Wed, 3 Jun 2009 16:19:05 +0200 Subject: Added missing file section for Doxygen parsing --- src/dmixml.c | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/dmixml.c b/src/dmixml.c index 0c1c731..1092872 100644 --- a/src/dmixml.c +++ b/src/dmixml.c @@ -24,6 +24,15 @@ * are deemed to be part of the source code. */ +/** + * @file dmixml.c + * @brief Helper functions for XML nodes and documents. + * @author David Sommerseth + * @author Nima Talebi + */ + + + #include #include #include @@ -276,7 +285,7 @@ xmlNode *dmixml_FindNode(xmlNode *node, const char *key) { * Retrieve the text contents of the given XML node * @author David Sommerseth * @param xmlNode* Pointer to the XML node of which we want to extract the contents - * @return char* Pointer to the tag contents if found, otherwise NULL. This value + * @return char* Pointer to the tag contents if found, otherwise NULL. This value * must NOT be freed, as it points directly into the value in the XML document. */ inline char *dmixml_GetContent(xmlNode *node) { @@ -291,7 +300,7 @@ inline char *dmixml_GetContent(xmlNode *node) { * @author David Sommerseth * @param xmlNode* Pointer to the XML node of where to start searching * @param const char* Name of the tag the function will look for - * @return char* Pointer to the tag contents if found, otherwise NULL. This value + * @return char* Pointer to the tag contents if found, otherwise NULL. This value * must NOT be freed, as it points directly into the value in the XML document. */ inline char *dmixml_GetNodeContent(xmlNode *node, const char *key) { @@ -304,7 +313,7 @@ inline char *dmixml_GetNodeContent(xmlNode *node, const char *key) { * @param char* Pointer to a buffer where to return the value * @param size_t Size of the return buffer * @param xmlXPathObject* Pointer to the XPath object containing the data - * @param int If the XPath object contains a node set, this defines + * @param int If the XPath object contains a node set, this defines * which of the elements to be extracted. * @return char* Points at the return buffer if a value is found, otherwise NULL is returned. */ -- cgit