xref: /php-src/ext/dom/lexbor/lexbor/core/strtod.h (revision bffab33a)
1 /*
2  * Copyright (C) Alexander Borisov
3  *
4  * Based on nxt_strtod.h from NGINX NJS project
5  *
6  * Copyright (C) Dmitry Volyntsev
7  * Copyright (C) Nginx, Inc.
8  */
9 
10 #ifndef LEXBOR_STRTOD_H
11 #define LEXBOR_STRTOD_H
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
17 #include "lexbor/core/base.h"
18 
19 
20 LXB_API double
21 lexbor_strtod_internal(const lxb_char_t *start, size_t length, int exp);
22 
23 
24 #ifdef __cplusplus
25 } /* extern "C" */
26 #endif
27 
28 #endif /* LEXBOR_STRTOD_H */
29