diff options
author | Tucker Evans <tucker@tuckerevans.com> | 2020-12-31 03:21:27 -0500 |
---|---|---|
committer | Tucker Evans <tucker@tuckerevans.com> | 2020-12-31 03:21:27 -0500 |
commit | a877aba402d5087d8fdb3a4e8ae7462656ca9589 (patch) | |
tree | b9b6ecfef1db0690b3a3c250fdf00aae8615fe48 /structures/rope/rope.h | |
parent | e2a99fae3709a5e0fdff92c2a787cde595bdffcc (diff) |
Add concat function for ropes
Diffstat (limited to 'structures/rope/rope.h')
-rw-r--r-- | structures/rope/rope.h | 1 |
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 |