6 lines
139 B
Cython
6 lines
139 B
Cython
|
cdef extern from "libxml/uri.h":
|
||
|
ctypedef struct xmlURI
|
||
|
|
||
|
cdef xmlURI* xmlParseURI(char* str)
|
||
|
cdef void xmlFreeURI(xmlURI* uri)
|