Lines Matching refs:bwstring

48 struct bwstring {  struct
66 struct bwstring *bwsalloc(size_t sz); argument
68 size_t bwsrawlen(const struct bwstring *bws);
69 const void* bwsrawdata(const struct bwstring *bws);
70 void bws_setlen(struct bwstring *bws, size_t newlen);
71 size_t bws_memsize(const struct bwstring *bws);
72 double bwstod(struct bwstring *s0, bool *empty);
73 int bws_month_score(const struct bwstring *s0);
75 struct bwstring *ignore_leading_blanks(struct bwstring *str);
76 struct bwstring *ignore_nonprinting(struct bwstring *str);
77 struct bwstring *dictionary_order(struct bwstring *str);
78 struct bwstring *ignore_case(struct bwstring *str);
80 void bwsprintf(FILE*, struct bwstring*, const char *prefix, const char *suffix);
81 void bws_disorder_warnx(struct bwstring *s, const char *fn, size_t pos);
83 struct bwstring *bwsdup(const struct bwstring *s);
84 struct bwstring *bwssbdup(const wchar_t *str, size_t size);
85 struct bwstring *bwscsbdup(const unsigned char *str, size_t size);
86 void bwsfree(struct bwstring *s);
87 size_t bwscpy(struct bwstring *dst, const struct bwstring *src);
88 struct bwstring *bwsncpy(struct bwstring *dst, const struct bwstring *src, size_t size);
89 struct bwstring *bwsnocpy(struct bwstring *dst, const struct bwstring *src, size_t offset, size_t s…
90 int bwscmp(const struct bwstring *bws1, const struct bwstring *bws2, size_t offset);
91 int bwsncmp(const struct bwstring *bws1, const struct bwstring *bws2, size_t offset, size_t len);
92 int bwscoll(const struct bwstring *bws1, const struct bwstring *bws2, size_t offset);
93 size_t bwsfwrite(struct bwstring *bws, FILE *f, bool zero_ended);
94 struct bwstring *bwsfgetln(FILE *file, size_t *len, bool zero_ended, struct reader_buffer *rb);
97 bws_begin(struct bwstring *bws) in bws_begin()
104 bws_end(struct bwstring *bws) in bws_end()