mirror of
https://github.com/philippechataignon/wxscrab_gen
synced 2024-11-15 19:48:05 +01:00
Print header when print hex
This commit is contained in:
parent
ccd43bf237
commit
ff0a09cc5f
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,6 @@ void print_header(Dictionary dic)
|
|||
|
||||
void print_dic_hex(Dictionary dic)
|
||||
{
|
||||
printf("%d\n", dic->nedges);
|
||||
for (int i = 0; i < dic->nedges + 1; i++) {
|
||||
Dawg_edge* e = dic->dawg + i;
|
||||
printf("%2d ptr=%2d t=%d l=%d f=%d chr=%d (%c)\n",
|
||||
|
@ -111,6 +110,7 @@ int main(int argc, char *argv[])
|
|||
print_header(&dic);
|
||||
}
|
||||
if (option_print_dic_hex) {
|
||||
print_header(&dic);
|
||||
print_dic_hex(&dic);
|
||||
}
|
||||
if (option_print_dic_list) {
|
||||
|
|
Loading…
Reference in a new issue