summaryrefslogtreecommitdiff
path: root/tests/piece-table-print.c
blob: 2b927bed6fe333c1e58b69bb073e3a714eae6ee3 (plain)
1
2
3
4
5
6
7
8
9
#include "../src/piece-table.h"

int main() {
    piece_table pt;
    init_piece_table(&pt, "Hola esto es un texto de prueba");
    print_piece_table(&pt);
    free_piece_table(&pt);
    return 0;
}