blob: 13cda683b14e75660e3be3812a8b1a76bbb82500 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#define IN_LIBEXSLT
#include "libexslt/libexslt.h"
#include <libxslt/extensions.h>
#include <libexslt/exsltconfig.h>
#include "exslt.h"
const char *exsltLibraryVersion = LIBEXSLT_VERSION_STRING
LIBEXSLT_VERSION_EXTRA;
const int exsltLibexsltVersion = LIBEXSLT_VERSION;
const int exsltLibxsltVersion = LIBXSLT_VERSION;
const int exsltLibxmlVersion = LIBXML_VERSION;
/**
* exsltRegisterAll:
*
* Registers all available EXSLT extensions
*/
void
exsltRegisterAll (void) {
xsltInitGlobals();
exsltCommonRegister();
#ifdef EXSLT_CRYPTO_ENABLED
exsltCryptoRegister();
#endif
exsltMathRegister();
exsltSetsRegister();
exsltFuncRegister();
exsltStrRegister();
exsltDateRegister();
exsltSaxonRegister();
exsltDynRegister();
}
|