summaryrefslogtreecommitdiffstats
path: root/Tests/FindLibXslt/Test/libexslt.c
blob: 59160241b8cf53ba92820996dae6829082555f0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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;
}