summaryrefslogtreecommitdiff
path: root/tests/piece-table-print.c
blob: 977ffce5e6394b8a1820919362da09a7b0143e5f (plain)
1
2
3
4
5
6
7
8
9
#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;
}