blob: 0bccf178881bcd28f54774196cb4960eea0c8828 (
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
36
37
38
39
40
|
#define IN_LIBEXSLT
#include "libexslt/libexslt.h"
#include <libxml/xmlversion.h>
#include "config.h"
#include <libxslt/xsltconfig.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();
}
|