17 lines
256 B
C
17 lines
256 B
C
#include <libexslt/exslt.h>
|
|
#include <libxslt/xslt.h>
|
|
#include <libxslt/xsltInternals.h>
|
|
|
|
int main()
|
|
{
|
|
xsltInit();
|
|
|
|
xsltStylesheet* style = xsltNewStylesheet();
|
|
exsltRegisterAll();
|
|
xsltFreeStylesheet(style);
|
|
|
|
xsltCleanupGlobals();
|
|
|
|
return 0;
|
|
}
|