aboutsummaryrefslogtreecommitdiff
path: root/structures/rope/rope.h
blob: f012cc107ed0c3b72adebe5193a91ffdfcefd6cf (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef ROPE_H
#define ROPE_H

typede struct rope_s rope;

rope* rope_new();
rope* str_to_rope(char*);
rope* rope_concate(rope*, rope*);

#endif