aboutsummaryrefslogtreecommitdiff
path: root/structures/rope/rope.h
diff options
context:
space:
mode:
authorTucker Evans <tucker@tuckerevans.com>2020-12-31 03:21:27 -0500
committerTucker Evans <tucker@tuckerevans.com>2020-12-31 03:21:27 -0500
commita877aba402d5087d8fdb3a4e8ae7462656ca9589 (patch)
treeb9b6ecfef1db0690b3a3c250fdf00aae8615fe48 /structures/rope/rope.h
parente2a99fae3709a5e0fdff92c2a787cde595bdffcc (diff)
Add concat function for ropes
Diffstat (limited to 'structures/rope/rope.h')
-rw-r--r--structures/rope/rope.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/structures/rope/rope.h b/structures/rope/rope.h
index 80e60a3..f012cc1 100644
--- a/structures/rope/rope.h
+++ b/structures/rope/rope.h
@@ -5,5 +5,6 @@ typede struct rope_s rope;
rope* rope_new();
rope* str_to_rope(char*);
+rope* rope_concate(rope*, rope*);
#endif