blob: d6765ff49ee548bc469b128f86af7e60fd16d973 [file] [log] [blame]
Daniel Veillard39a1f9a1999-01-17 19:11:59 +00001/*
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
14extern xmlElementPtr xmlAddElementDecl(xmlDtdPtr dtd, char *name, int type,
15 xmlElementContentPtr content);
16extern xmlElementContentPtr xmlNewElementContent(CHAR *name, int type);
17extern void xmlFreeElementContent(xmlElementContentPtr cur);
18#endif /* __XML_VALID_H__ */