Lines Matching refs:bwstring

61 struct bwstring  struct
72 struct bwstring *bwsalloc(size_t sz); argument
74 size_t bwsrawlen(const struct bwstring *bws);
75 const void* bwsrawdata(const struct bwstring *bws);
76 void bws_setlen(struct bwstring *bws, size_t newlen);
77 size_t bws_memsize(const struct bwstring *bws);
78 double bwstod(struct bwstring *s0, bool *empty);
79 int bws_month_score(const struct bwstring *s0);
81 struct bwstring *ignore_leading_blanks(struct bwstring *str);
82 struct bwstring *ignore_nonprinting(struct bwstring *str);
83 struct bwstring *dictionary_order(struct bwstring *str);
84 struct bwstring *ignore_case(struct bwstring *str);
86 void bwsprintf(FILE*, struct bwstring*, const char *prefix, const char *suffix);
87 void bws_disorder_warnx(struct bwstring *s, const char *fn, size_t pos);
89 struct bwstring *bwsdup(const struct bwstring *s);
90 struct bwstring *bwssbdup(const wchar_t *str, size_t size);
91 struct bwstring *bwscsbdup(const unsigned char *str, size_t size);
92 void bwsfree(const struct bwstring *s);
93 struct bwstring *bwsnocpy(struct bwstring *dst, const struct bwstring *src, size_t offset, size_t s…
94 int bwscmp(const struct bwstring *bws1, const struct bwstring *bws2, size_t offset);
95 int bwsncmp(const struct bwstring *bws1, const struct bwstring *bws2, size_t offset, size_t len);
96 int bwscoll(const struct bwstring *bws1, const struct bwstring *bws2, size_t offset);
97 size_t bwsfwrite(struct bwstring *bws, FILE *f, bool zero_ended);
100 bws_begin(struct bwstring *bws) in bws_begin()
107 bws_end(struct bwstring *bws) in bws_end()