Searched refs:mbstring (Results 1 – 3 of 3) sorted by relevance
| /freebsd/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 | 129 wchar_t* alloc_mbstows(const char *mbstring) in alloc_mbstows() argument 137 pmbstring = mbstring; in alloc_mbstows() 147 mbstowcs(wstring, mbstring, nchar); in alloc_mbstows() 161 int str_props(const char *mbstring, unsigned int *cols, bool *has_multi_col) in str_props() argument 174 while ((charlen = mbrlen(mbstring, mb_cur_max, &mbs)) != 0 && in str_props() 176 if (mbtowc(&wch, mbstring, mb_cur_max) < 0) in str_props() 182 mbstring += charlen; in str_props() 193 unsigned int strcols(const char *mbstring) in strcols() argument 204 while ((charlen = mbrlen(mbstring, mb_cur_max, &mbs)) != 0 && in strcols() 206 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()
|