fixes flag init value

This commit is contained in:
SuperNovaa41 2025-02-07 12:24:55 -05:00
parent f003e64412
commit 552a926ca8

View File

@ -16,7 +16,7 @@ void init_flags(struct flags* flags)
flags->octets = 2;
flags->len = -1; // -1 means til EOF
flags->uppercase = false;
flags->decimaloffset = true;
flags->decimaloffset = false;
}