Annotation of XML/valid.h, revision 1.1

1.1     ! daniel      1: /*
        !             2:  * valid.h : interface to the DTD handling and the validity checking
        !             3:  *
        !             4:  * See Copyright for the status of this software.
        !             5:  *
        !             6:  * Daniel.Veillard@w3.org
        !             7:  */
        !             8: 
        !             9: 
        !            10: #ifndef __XML_VALID_H__
        !            11: #define __XML_VALID_H__
        !            12: #include "tree.h"
        !            13: 
        !            14: extern xmlElementPtr xmlAddElementDecl(xmlDtdPtr dtd, char *name, int type, 
        !            15:                                        xmlElementContentPtr content);
        !            16: extern xmlElementContentPtr xmlNewElementContent(CHAR *name, int type);
        !            17: extern void xmlFreeElementContent(xmlElementContentPtr cur);
        !            18: #endif /* __XML_VALID_H__ */

Webmaster