mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2025-10-10 23:22:35 +02:00
15 lines
205 B
C
15 lines
205 B
C
#pragma once
|
|
|
|
#include <stdlib.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
float __wrap_strtof(const char* in, char** tail);
|
|
double __wrap_strtod(const char* in, char** tail);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|