All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ieee754_parse_wrap/wrappers.h
1#pragma once
2
3#include <stdlib.h>
4
5#ifdef __cplusplus
6extern "C" {
7#endif
8
9float __wrap_strtof(const char* in, char** tail);
10double __wrap_strtod(const char* in, char** tail);
11
12#ifdef __cplusplus
13}
14#endif