1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:27:45 +00:00

LibC: Use more flexible digit parsing code, deduplicate

This commit is contained in:
Ben Wiederhake 2020-05-10 23:01:26 +02:00 committed by Andreas Kling
parent bc5d5bf75d
commit 1f9dcdc41c
2 changed files with 97 additions and 107 deletions

View file

@ -52,9 +52,13 @@
#define LONG_MAX 2147483647L
#define LONG_MIN (-LONG_MAX - 1L)
#define ULONG_MAX 4294967295UL
#define LONG_LONG_MAX 9223372036854775807LL
#define LONG_LONG_MIN (-LONG_LONG_MAX - 1LL)
#define ULONG_LONG_MAX 18446744073709551615ULL
#define CHAR_MIN SCHAR_MIN
#define CHAR_MAX SCHAR_MAX