]> git.street.me.uk Git - andy/viking.git/blame - src/misc/strtod.h
[QA] Shift Gtk dependent utility functions into separate file.
[andy/viking.git] / src / misc / strtod.h
CommitLineData
81687a73
RN
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
10extern "C" {
11#endif
12
13double strtod_i8n(const char *str, char **endptr);
14float strtof_i8n(const char *str, char **endptr);
15long double strtold_i8n(const char *str, char **endptr);
16double atof_i8n(const char *str);
17
18#ifdef __cplusplus
19}
20#endif
21
22#endif