mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-01-16 04:11:15 +00:00
13 lines
121 B
C
13 lines
121 B
C
// atof.h
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
double atof(const char *s);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|