Files
mop3/ce/strbuf.h
kamkow1 2a891fcdd1
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m38s
Split CE code into multiple files
2026-03-03 20:59:21 +01:00

16 lines
256 B
C

#ifndef _STRBUF_H
#define _STRBUF_H
#include <stddef.h>
struct strbuf {
char* items;
size_t count, capacity;
};
void strbuf_append (struct strbuf* strbuf, char c);
void strbuf_append_str (struct strbuf* strbuf, const char* s);
#endif // _STRBUF_H