mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
13 lines
274 B
C
13 lines
274 B
C
|
#include <libxml/parser.h>
|
||
|
#include <libxslt/xslt.h>
|
||
|
#include <libxslt/xsltInternals.h>
|
||
|
|
||
|
|
||
|
int main() {
|
||
|
xmlDocPtr doc = xmlNewDoc(BAD_CAST "1.0");
|
||
|
xsltStylesheetPtr cur = NULL;
|
||
|
cur = xsltLoadStylesheetPI(doc);
|
||
|
xsltFreeStylesheet(cur);
|
||
|
xmlFreeDoc(doc);
|
||
|
return 0;
|
||
|
}
|