guess this was never marked as removed

This commit is contained in:
Kyle Isom 2020-02-15 01:31:53 +02:00
parent ba6c249454
commit 1b4bfe84eb
1 changed files with 0 additions and 17 deletions

View File

@ -1,17 +0,0 @@
#ifndef KE_ABUF_H
#define KE_ABUF_H
struct abuf {
char *b;
int len;
};
#define ABUF_INIT {NULL, 0}
void ab_append(struct abuf *buf, const char *s, int len);
void ab_free(struct abuf *buf);
#endif /* KE_ABUF_H */