Files
beluga/include/append_buffer.h
T
2026-06-02 13:00:13 +02:00

13 lines
231 B
C

#ifndef APPEND_BUFFER_H_
#define APPEND_BUFFER_H_
#include "data.h"
#include <stdlib.h>
#include <string.h>
void abAppend(struct abuf *ab, const char *s, int len);
void abFree(const struct abuf *ab);
#endif // APPEND_BUFFER_H_