summary refs log tree commit diff
path: root/bin/edi/edi.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-11-20 18:36:45 -0500
committerJune McEnroe <june@causal.agency>2018-11-20 18:36:45 -0500
commit0de63b3e4057a92f620b8d1aeef236db560c1753 (patch)
treef7e4bfca50c5e4a7f4bd0ed96b9cf16f76eccf96 /bin/edi/edi.h
parentAlias ls='ls -p' (diff)
downloadsrc-0de63b3e4057a92f620b8d1aeef236db560c1753.tar.gz
src-0de63b3e4057a92f620b8d1aeef236db560c1753.zip
Add bufferDelete
Diffstat (limited to 'bin/edi/edi.h')
-rw-r--r--bin/edi/edi.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/edi/edi.h b/bin/edi/edi.h
index b2e87e19..3e43e40d 100644
--- a/bin/edi/edi.h
+++ b/bin/edi/edi.h
@@ -44,6 +44,7 @@ struct Buffer bufferAlloc(size_t cap);
 void bufferFree(struct Buffer *buf);
 void bufferInsert(struct Buffer *buf);
 void bufferAppend(struct Buffer *buf, wchar_t ch);
+void bufferDelete(struct Buffer *buf);
 wchar_t *bufferDest(struct Buffer *buf, size_t len);
 
 struct Table {