aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/locale/c.cpp
blob: c1dea4722c40f0537ad8684ca1ef3980d4b2177f (plain) (blame)
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
41
42
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "c.h"
#include "locale.h"
#include <cstdlib>
#include <cerrno>

namespace vespalib::locale::c {

namespace {

Locale _G_C_Locale;

}

double strtod(const char *startp, char **endp) {
    return strtod_l(startp, endp, _G_C_Locale.get());
}

float strtof(const char *startp, char **endp) {
    return strtof_l(startp, endp, _G_C_Locale.get());
}

double strtod_au(const char *startp, char **endp) {
    int was = errno;
    double v = strtod_l(startp, endp, _G_C_Locale.get());
    if (errno == ERANGE) {
        if ((-1.0 < v) && (v < 1.0)) errno = was;
    }
    return v;
}

float strtof_au(const char *startp, char **endp) {
    int was = errno;
    float v = strtof_l(startp, endp, _G_C_Locale.get());
    if (errno == ERANGE) {
        if ((-1.0 < v) && (v < 1.0)) errno = was;
    }
    return v;
}

}