diff options
author | June McEnroe <june@causal.agency> | 2018-11-23 15:27:26 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-11-23 15:27:26 -0500 |
commit | 82f62a0f728eb57c22776424521564da7de7cc22 (patch) | |
tree | f442da1d359ade7c7268d25499005a6d5f8260c9 /bin/edi/edi.h | |
parent | Move buffer length to blocks (diff) | |
download | src-82f62a0f728eb57c22776424521564da7de7cc22.tar.gz src-82f62a0f728eb57c22776424521564da7de7cc22.zip |
Replace tableUpdate with tableReplace
Diffstat (limited to '')
-rw-r--r-- | bin/edi/edi.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/edi/edi.h b/bin/edi/edi.h index 819b0a36..be7bf681 100644 --- a/bin/edi/edi.h +++ b/bin/edi/edi.h @@ -51,15 +51,14 @@ void bufferTruncate(struct Buffer *buf, size_t len); static const struct Table { size_t cap, len; - size_t ins; struct Slice *slices; } TableEmpty; struct Table tableAlloc(size_t cap); void tableFree(struct Table *table); void tablePush(struct Table *table, struct Slice slice); +void tableReplace(struct Table *table, struct Slice old, struct Slice new); struct Table tableInsert(const struct Table *prev, size_t at, struct Slice ins); struct Table tableDelete(const struct Table *prev, struct Span del); -void tableUpdate(struct Table *table, struct Slice ins); struct Iter { const struct Table *table; |