Searched refs:mbstring (Results 1 – 3 of 3) sorted by relevance
/freebsd-src/contrib/bsddialog/lib/ |
H A D | lib_util.h | 117 unsigned int strcols(const char *mbstring); 118 int str_props(const char *mbstring, unsigned int *cols, bool *has_multi_col); 120 wchar_t* alloc_mbstows(const char *mbstring);
|
H A D | lib_util.c | 128 wchar_t* alloc_mbstows(const char *mbstring) in alloc_mbstows() argument 136 pmbstring = mbstring; in alloc_mbstows() 146 mbstowcs(wstring, mbstring, nchar); in alloc_mbstows() 160 int str_props(const char *mbstring, unsigned int *cols, bool *has_multi_col) in str_props() argument 173 while ((charlen = mbrlen(mbstring, mb_cur_max, &mbs)) != 0 && in str_props() 175 if (mbtowc(&wch, mbstring, mb_cur_max) < 0) in str_props() 181 mbstring += charlen; in str_props() 192 unsigned int strcols(const char *mbstring) in strcols() argument 203 while ((charlen = mbrlen(mbstring, mb_cur_max, &mbs)) != 0 && in strcols() 205 if (mbtowc(&wch, mbstring, mb_cur_max) < 0) in strcols() [all …]
|
H A D | barbox.c | 210 mvwaddcstr(WINDOW *win, int y, int x, const char *mbstring, unsigned int cols) in mvwaddcstr() argument 218 pmbstring = mbstring; in mvwaddcstr() 229 mvwaddnstr(win, y, x, mbstring, n); in mvwaddcstr()
|