1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-11-08 18:02:23 +05:30

extol.c: pack all loop-related operations into it

This commit is contained in:
Intel A80486DX2-66 2024-03-09 14:04:32 +03:00
parent 93768da40f
commit bef0606936
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -57,9 +57,9 @@ extol (FILE *f)
}
}
result = extol (fs);
for (result <<= 4, result &= ~15; (result & 15) != 15; result++)
for (result <<= 4, result &= ~15;
(result & 15) != 15 || (result >>= 4, 0); result++)
fputc ('=', fs);
result >>= 4;
fprintf (fs, "\n");
fclose (fs);
}