#ifndef _SB_H__ #define _SB_H__ #include struct ty_sb { char *buf; size_t gap; 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); int ty_sb_prepend(struct ty_sb *sb, const char *s, size_t len); char *ty_sb_steal_buf(struct ty_sb *sb); void ty_sb_lskip(struct ty_sb *sb, int len); void ty_sb_rskip(struct ty_sb *sb, int len); void ty_sb_free(struct ty_sb *sb); #endif