terminology/src/bin/sb.h

18 lines
230 B
C
Raw Normal View History

2016-11-06 02:42:17 -08:00
#ifndef _SB_H__
#define _SB_H__
#include <stddef.h>
struct ty_sb {
char *buf;
size_t len;
size_t alloc;
};
int
ty_sb_add(struct ty_sb *sb, const char *s, size_t len);
void
ty_sb_spaces_rtrim(struct ty_sb *sb);
#endif