Home | History | Annotate | Download | only in shared

Lines Matching full:strbuf

8 struct strbuf {
14 void strbuf_init(struct strbuf *buf);
15 void strbuf_release(struct strbuf *buf);
16 void strbuf_clear(struct strbuf *buf);
19 char *strbuf_steal(struct strbuf *buf);
25 const char *strbuf_str(struct strbuf *buf);
27 bool strbuf_pushchar(struct strbuf *buf, char ch);
28 unsigned strbuf_pushchars(struct strbuf *buf, const char *str);
29 void strbuf_popchar(struct strbuf *buf);
30 void strbuf_popchars(struct strbuf *buf, unsigned n);