Sign in
chromium
/
external
/
github.com
/
Kitware
/
CMake
/
master
/
.
/
Tests
/
FindLibXslt
/
Test
/
libexslt.c
blob: 59160241b8cf53ba92820996dae6829082555f0e [
file
]
#include
<libexslt/exslt.h>
#include
<libxslt/xslt.h>
#include
<libxslt/xsltInternals.h>
int
main
(
void
)
{
xsltInit
();
xsltStylesheet
*
style
=
xsltNewStylesheet
();
exsltRegisterAll
();
xsltFreeStylesheet
(
style
);
xsltCleanupGlobals
();
return
0
;
}