Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
strtold.c
Go to the documentation of this file.
1
2
#include <
stdlib.h
>
3
4
long
double
strtold
(
const
char
* __restrict nptr,
char
** __restrict endptr)
5
{
6
return
(
long
double
)
strtod
(nptr, endptr);
7
}
strtold
long double strtold(const char *__restrict nptr, char **__restrict endptr)
Definition:
strtold.c:4
stdlib.h
strtod
double strtod(const char *__restrict str, char **__restrict str_end)
Interprets a floating-point value in a byte string pointed to by str.
src
stdlib
strtold.c
Generated by
1.8.15