This commit is contained in:
Frank Denis 2021-02-13 12:10:21 +01:00
parent e3da8b137f
commit afaf3aa1d8
2 changed files with 4 additions and 2 deletions

View File

@ -24,8 +24,9 @@ main(void)
for (i = 0; i < 32; ++i) {
printf(",0x%02x", (unsigned int) rs[i]);
if (i % 8 == 7)
if (i % 8 == 7) {
printf("\n");
}
}
return 0;
}

View File

@ -41,8 +41,9 @@ main(void)
for (i = 32; i < 163; ++i) {
printf(",0x%02x", (unsigned int) c[i]);
if (i % 8 == 7)
if (i % 8 == 7) {
printf("\n");
}
}
printf("\n");