]> git.street.me.uk Git - andy/viking.git/blob - src/misc/strtod.h
Read OSM Metatile capability and basic test with single example metatile.
[andy/viking.git] / src / misc / strtod.h
1 // License: CC0
2 // Basic interface to strtod.c from the Sanos Operating System Kernel (http://www.jbox.dk/sanos/)
3 // Function names modified to prevent clashing with whatever OS this code is being built with
4
5
6 #ifndef __STRTOD_H
7 #define __STRTOD_H
8
9 #ifdef  __cplusplus
10 extern "C" {
11 #endif
12
13 double strtod_i8n(const char *str, char **endptr);
14 float strtof_i8n(const char *str, char **endptr);
15 long double strtold_i8n(const char *str, char **endptr);
16 double atof_i8n(const char *str);
17
18 #ifdef  __cplusplus
19 }
20 #endif
21
22 #endif