summaryrefslogtreecommitdiff
path: root/libexslt/exslt.h
blob: 36a17bb7596a81a05afd71a45efe469fba73d272 (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

#ifndef __EXSLT_H__
#define __EXSLT_H__

#include <libxml/tree.h>

extern const char *exsltLibraryVersion;
extern const int exsltLibexsltVersion;
extern const int exsltLibxsltVersion;
extern const int exsltLibxmlVersion;

#define EXSLT_COMMON_NAMESPACE ((const xmlChar *) "http://exslt.org/common")
#define EXSLT_MATH_NAMESPACE ((const xmlChar *) "http://exslt.org/math")
#define EXSLT_SETS_NAMESPACE ((const xmlChar *) "http://exslt.org/sets")
#define EXSLT_FUNCTIONS_NAMESPACE ((const xmlChar *) "http://exslt.org/functions")

void exslCommonRegister (void);
void exslMathRegister (void);
void exslSetsRegister (void);
void exslFuncRegister (void);

void exslRegisterAll (void);

#endif /* __EXSLT_H__ */