stash undo3

This commit is contained in:
2025-11-29 12:36:11 -08:00
parent 85e9f33613
commit c47287e96e
8 changed files with 96 additions and 31 deletions

7
abuf.c
View File

@@ -71,6 +71,13 @@ ab_append(abuf *buf, const char *s, size_t len)
}
void
ab_append_ab(abuf *buf, const abuf *other)
{
ab_append(buf, other->b, other->size);
}
void
ab_prependch(abuf *buf, const char c)
{