mirror of
https://github.com/opnsense/src.git
synced 2026-04-04 17:05:14 -04:00
15 lines
219 B
C
15 lines
219 B
C
#ifndef XBUF_H_
|
|
#define XBUF_H_
|
|
|
|
struct xbuffer
|
|
{
|
|
char *data;
|
|
int end;
|
|
int size;
|
|
};
|
|
|
|
void xbuf_init(struct xbuffer *xbuf);
|
|
void xbuf_reset(struct xbuffer *xbuf);
|
|
void xbuf_add(struct xbuffer *xbuf, char ch);
|
|
|
|
#endif
|