blob: abd388e27215d2d4e521d159ce932521358a92c4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
cimport tree
from tree cimport xmlDoc, xmlDtd
cdef extern from "libxml/valid.h":
ctypedef struct xmlValidCtxt
cdef xmlValidCtxt* xmlNewValidCtxt() nogil
cdef void xmlFreeValidCtxt(xmlValidCtxt* cur) nogil
cdef int xmlValidateDtd(xmlValidCtxt* ctxt, xmlDoc* doc, xmlDtd* dtd) nogil
|