diff options
author | Tucker Evans <tucker@tuckerevans.com> | 2021-01-03 16:58:24 -0500 |
---|---|---|
committer | Tucker Evans <tucker@tuckerevans.com> | 2021-01-03 16:58:24 -0500 |
commit | 0ee6aa96f6ea3fe1a1eb855aed5d6c466643878a (patch) | |
tree | 2baf91211e9015b3629515dff92ecc9a73ad9ffa /structures/rope/rope.h | |
parent | a877aba402d5087d8fdb3a4e8ae7462656ca9589 (diff) |
Add debug/print functions for rope
Diffstat (limited to 'structures/rope/rope.h')
-rw-r--r-- | structures/rope/rope.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/structures/rope/rope.h b/structures/rope/rope.h index f012cc1..86d9ae3 100644 --- a/structures/rope/rope.h +++ b/structures/rope/rope.h @@ -1,7 +1,7 @@ #ifndef ROPE_H #define ROPE_H -typede struct rope_s rope; +typedef struct rope_s rope; rope* rope_new(); rope* str_to_rope(char*); |