Coverage Report

Created: 2026-01-19 06:38

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