diff options
author | cflip <cflip@cflip.net> | 2023-01-31 10:44:54 -0700 |
---|---|---|
committer | cflip <cflip@cflip.net> | 2023-01-31 10:44:54 -0700 |
commit | c3da108c2d41853beb49a90a1f43a2a9a158c385 (patch) | |
tree | f5e95175aad8db3d8c7a19d5a6c021d4076c9f68 /textbuf.h | |
parent | 24addd792a50ff47a904f819375bed32b32039a0 (diff) |
Add functions to delete and clear a textbuf
Diffstat (limited to 'textbuf.h')
-rw-r--r-- | textbuf.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -17,6 +17,8 @@ struct textbuf { struct textbuf textbuf_init(); void textbuf_append(struct textbuf *textbuf, const char *str, int len); +void textbuf_delete(struct textbuf *textbuf); +void textbuf_clear(struct textbuf *textbuf); void textbuf_free(struct textbuf *textbuf); #endif |