vcscanf: define floating point result variable

Holds the parsed floating point value.
This commit is contained in:
Matheus Afonso Martins Moreira 2023-11-02 06:18:28 -03:00
parent 0e7c6aa5e1
commit c8e941bb79

View file

@ -102,6 +102,7 @@ int __vcscanf(int callback(void *), //
break;
case '%': {
uint128_t number;
double fp;
unsigned width = 0;
unsigned char bits = 32;
unsigned char charbytes = sizeof(char);