Lines Matching defs:col_len
578 * @param col_len An out parameter for the length of the grapheme on screen.
582 bc_history_nextLen(const char* buf, size_t buf_len, size_t pos, size_t* col_len)
593 if (col_len != NULL) *col_len = 0;
600 if (col_len != NULL) *col_len = bc_history_wchar(cp) ? 2 : 1;
637 // The original linenoise-mob had an extra parameter col_len, like
791 size_t col_len, len;
793 len = bc_history_nextLen(buf, buf_len, off, &col_len);
796 ret += col_len;