summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2025-08-12 00:28:35 +0200
committerEkaitz Zarraga <ekaitz@elenq.tech>2025-08-12 00:31:01 +0200
commitb11768a2ab2ad63a232be9f018f56700c9fbd172 (patch)
tree253d3aab5ac39a61b67d6e0a6b6a30a71847c20d /tests
parent9dc4e4f217c6032e99b5828a514cf817770981a9 (diff)
piece-table: remove print functionality
We want to lean more on the debugger world than printf debugging as our data structures are opaque (on purpose).
Diffstat (limited to 'tests')
-rw-r--r--tests/piece-table-print.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/piece-table-print.c b/tests/piece-table-print.c
deleted file mode 100644
index 977ffce..0000000
--- a/tests/piece-table-print.c
+++ /dev/null
@@ -1,9 +0,0 @@
-#include "../src/piece-table.h"
-
-int
-main()
-{
- piece_table *pt = piece_table_create("Hola esto es un texto de prueba");
- piece_table_destroy(pt);
- return 0;
-}