Lines Matching refs:str
5 #include "str.h"
15 string_t *str;
24 ctx.str = str_new(default_pool, 256);
29 str_free(&ctx.str);
42 str_append_tabescaped(ctx.str, value);
43 str_append_c(ctx.str, '\t');
58 str_append_tabescaped_n(ctx.str, value, size);
60 if (str_len(ctx.str) >= IO_BLOCK_SIZE)
67 str_data(ctx.str), str_len(ctx.str));
68 str_truncate(ctx.str, 0);