]> Kevux Git Server - fll/commit
Update: implement f_number_signed and f_number_unsigned, as either 32-bit, 64-bit...
authorKevin Day <thekevinday@gmail.com>
Sun, 10 Nov 2019 04:28:28 +0000 (22:28 -0600)
committerKevin Day <thekevinday@gmail.com>
Sun, 10 Nov 2019 04:28:28 +0000 (22:28 -0600)
commit24ebddbfc76d1ef20634d07a85eef2755796ec50
tree6fd57a1c347fae317afbe14d7a701044bb327b59
parenta0e818a9516e9f4bfe34c6533fa375ffe1bc4f53
Update: implement f_number_signed and f_number_unsigned, as either 32-bit, 64-bit, or 128-bit

Provide the types f_number_signed and f_number_unsigned as a way to define the default "number" type to be used for string to number conversions and array indexes.
By providing 32-bit, 64-bit (default), and 128-bit types, the type can then be adjusted to more easily work on limited hardware or expand to more capable hardware.

This will be the recommended number data type to use in FLL functions going forward.
level_0/f_console/c/console.h
level_0/f_conversion/c/conversion.c
level_0/f_conversion/c/conversion.h
level_0/f_string/c/string.h
level_0/f_type/c/type.h
level_0/f_utf/c/utf.h
level_1/fl_console/c/console.c
level_1/fl_console/c/console.h