Annotation of XML/entities.h, revision 1.1

1.1     ! httpng      1: /*
        !             2:  * entities.h : interface for the XML entities handking
        !             3:  */
        !             4: 
        !             5: #ifndef __XML_ENTITIES_H__
        !             6: #define __XML_ENTITIES_H__
        !             7: #include "parser.h"
        !             8: 
        !             9: /*
        !            10:  * External functions :
        !            11:  */
        !            12: 
        !            13: extern void xmlAddEntity(xmlDocPtr doc, CHAR value, const CHAR *id);
        !            14: extern CHAR xmlGetEntity(xmlDocPtr doc, const CHAR *id);
        !            15: extern CHAR *xmlSubstituteEntities(xmlDocPtr doc, const CHAR *input);
        !            16: 
        !            17: # endif /* __XML_ENTITIES_H__ */

Webmaster