diff options
author | Tucker Evans <tucker@tuckerevans.com> | 2020-12-31 03:20:14 -0500 |
---|---|---|
committer | Tucker Evans <tucker@tuckerevans.com> | 2020-12-31 03:20:14 -0500 |
commit | 435ab65d59f2a2eb1908a4b399049f6bfa0934e3 (patch) | |
tree | 4a45b493dd0f8cf56e379d589302d32e255aa034 /structures/rope/rope.h | |
parent | be0b9926ddcee4f6af1eef1091d48c919e611340 (diff) |
Add func to embed a char* (str) into a rope
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 4ffd726..80e60a3 100644 --- a/structures/rope/rope.h +++ b/structures/rope/rope.h @@ -4,5 +4,6 @@ typede struct rope_s rope; rope* rope_new(); +rope* str_to_rope(char*); #endif |