cleaning of the struct __scanf_input

This commit is contained in:
Sylvain PILLOT 2023-03-09 18:11:11 +01:00
parent 4d7787db01
commit aee725a3d6
1 changed files with 1 additions and 3 deletions

View File

@ -23,16 +23,14 @@ extern "C" {
struct __scanf_input {
char const * __restrict__ str;
FILE *fp;
// max char to read from the input stream as per user length modifier
int readmaxlength;
int currentlength;
int skip;
// total number of char read so far in the current call of a XYscanf() function (to return a %n when required)
int readsofar;
bool purgewhitespace;
int buffer;
};