Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
strtold.c File Reference
#include <stdlib.h>
Include dependency graph for strtold.c:

Go to the source code of this file.

Functions

long double strtold (const char *__restrict nptr, char **__restrict endptr)
 

Function Documentation

◆ strtold()

long double strtold ( const char *__restrict  nptr,
char **__restrict  endptr 
)

Definition at line 4 of file strtold.c.

5 {
6  return (long double)strtod(nptr, endptr);
7 }
double strtod(const char *__restrict str, char **__restrict str_end)
Interprets a floating-point value in a byte string pointed to by str.

References strtod().