17 lines
256 B
C
Raw Normal View History

2020-08-30 11:54:41 +02:00
#include <libexslt/exslt.h>
#include <libxslt/xslt.h>
#include <libxslt/xsltInternals.h>
int main()
{
xsltInit();
xsltStylesheet* style = xsltNewStylesheet();
exsltRegisterAll();
xsltFreeStylesheet(style);
xsltCleanupGlobals();
return 0;
}