fxlibc/src/libc/stdlib
Lephenixnoir efb37cf783
stdlib: add and test strtold (DONE)
The method is rather naive - digits read as an integer, then multipled
by a power of 10 or 2. This does not always give exact results, but it's
close enough for now. A stub support for long double larger than 64 bits
is provided.
2021-05-21 22:49:55 +02:00
..
target/vhex-sh remove unneeded __SUPPORT macros 2021-05-09 22:11:49 +02:00
abs.c stdlib: add abs, labs, llabs, div, ldiv, lldiv (TEST) 2021-05-18 21:25:45 +02:00
atoi.c stdlib: add atoi, atol and atoll 2021-05-20 11:35:14 +02:00
atol.c stdlib: add atoi, atol and atoll 2021-05-20 11:35:14 +02:00
atoll.c stdlib: add atoi, atol and atoll 2021-05-20 11:35:14 +02:00
calloc.c update include hierarchy 2021-05-09 17:59:07 +02:00
div.c stdlib: add abs, labs, llabs, div, ldiv, lldiv (TEST) 2021-05-18 21:25:45 +02:00
labs.c stdlib: add abs, labs, llabs, div, ldiv, lldiv (TEST) 2021-05-18 21:25:45 +02:00
ldiv.c stdlib: add abs, labs, llabs, div, ldiv, lldiv (TEST) 2021-05-18 21:25:45 +02:00
llabs.c stdlib: add abs, labs, llabs, div, ldiv, lldiv (TEST) 2021-05-18 21:25:45 +02:00
lldiv.c stdlib: add abs, labs, llabs, div, ldiv, lldiv (TEST) 2021-05-18 21:25:45 +02:00
reallocarray.c update include hierarchy 2021-05-09 17:59:07 +02:00
stdlib_p.h stdlib: fix saturation in strtol, strtoul, strtoll, strtoull 2021-05-20 15:38:37 +02:00
strto_int.c stdlib: fix saturation in strtol, strtoul, strtoll, strtoull 2021-05-20 15:38:37 +02:00
strtol.c stdlib: add a test strtol, strtoul, strtoll (DONE) 2021-05-20 11:03:19 +02:00
strtold.c stdlib: add and test strtold (DONE) 2021-05-21 22:49:55 +02:00
strtoll.c stdlib: add a test strtol, strtoul, strtoll (DONE) 2021-05-20 11:03:19 +02:00
strtoul.c stdlib: add a test strtol, strtoul, strtoll (DONE) 2021-05-20 11:03:19 +02:00
strtoull.c stdlib: reword strtoull into a generic strto_int 2021-05-20 09:23:06 +02:00