17 lines
260 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>
2024-04-14 22:45:38 +02:00
int main(void)
2020-08-30 11:54:41 +02:00
{
xsltInit();
xsltStylesheet* style = xsltNewStylesheet();
exsltRegisterAll();
xsltFreeStylesheet(style);
xsltCleanupGlobals();
return 0;
}