aboutsummaryrefslogtreecommitdiff
path: root/src/print.c
diff options
context:
space:
mode:
authorMarvin Borner2023-04-13 16:44:53 +0200
committerMarvin Borner2023-04-13 16:44:53 +0200
commit43996255f614ac57deb2fc0666f221853c60b343 (patch)
tree0d7837a2522ded082a17722f7b51fd305918bac4 /src/print.c
parent3fec61c52b2636397012b82219e1ae5d19fc9fc0 (diff)
Options and fixes
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c
index 425aedb..d6636c5 100644
--- a/src/print.c
+++ b/src/print.c
@@ -49,6 +49,18 @@ void print_blc(struct term *term)
printf("0");
break;
default:
- fprintf(stderr, "Invalid type %d\n", term->type);
+ fprintf(stderr, "invalid type %d\n", term->type);
+ }
+}
+
+void print_bloc(struct bloc_parsed *bloc)
+{
+ printf("\n=== START BLOC ===\n");
+ printf("| number of entries: %ld\n", bloc->length);
+ for (size_t i = 0; i < bloc->length; i++) {
+ printf("| entry %ld: ", i);
+ print_bruijn(bloc->entries[i]);
+ printf("\n");
}
+ printf("=== END BLOC ===\n\n");
}