Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
refs/heads/release
/
.
/
Tests
/
FindLibXslt
/
Test
/
libexslt.c
blob: 59160241b8cf53ba92820996dae6829082555f0e [
file
] [
log
] [
blame
] [
edit
]
#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
;
}