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

typede struct rope_s rope;

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

#endif