From a877aba402d5087d8fdb3a4e8ae7462656ca9589 Mon Sep 17 00:00:00 2001 From: Tucker Evans Date: Thu, 31 Dec 2020 03:21:27 -0500 Subject: Add concat function for ropes --- structures/rope/rope.h | 1 + 1 file changed, 1 insertion(+) (limited to 'structures/rope/rope.h') 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 -- cgit v1.1