fix: convert "E" to "e"

This commit is contained in:
Renge 2022-02-18 22:50:57 -05:00
parent 75797b5d5d
commit 19f91c3ea5

View File

@ -338,6 +338,11 @@ int argo_read_number(ARGO_NUMBER *n, FILE *f)
{
ARGO_CHAR *ptr = string_value;
ptr += length;
if (c == 'E')
{
c = 'e';
}
*ptr = c;
length++;
}