simplify output format
This commit is contained in:
parent
202985d09a
commit
0fac376b26
1 changed files with 2 additions and 4 deletions
|
@ -176,10 +176,8 @@ void printtable(const short *table, int limit)
|
|||
{
|
||||
int i;
|
||||
|
||||
for (i=0 ; i < limit; ++i) {
|
||||
printf("%d%c", table[i],
|
||||
(i % 8) == 7 ? '\n' : ' ');
|
||||
}
|
||||
for (i = 0 ; i < limit; ++i)
|
||||
printf("%d\n", table[i]);
|
||||
}
|
||||
|
||||
/*int
|
||||
|
|
Loading…
Add table
Reference in a new issue