Home
last modified time | relevance | path

Searched refs:col_len (Results 1 – 1 of 1) sorted by relevance

/external/bc/src/
Dhistory.c276 size_t pos, size_t *col_len) in bc_history_nextLen() argument
287 if (col_len != NULL) *col_len = bc_history_wchar(cp) ? 2 : 1; in bc_history_nextLen()
306 static size_t bc_history_prevLen(const char *buf, size_t pos, size_t *col_len) { in bc_history_prevLen() argument
319 if (col_len != NULL) *col_len = 1 + (bc_history_wchar(cp) != 0); in bc_history_prevLen()
400 size_t col_len, len; in bc_history_colPos() local
402 len = bc_history_nextLen(buf, buf_len, off, &col_len); in bc_history_colPos()
405 ret += col_len; in bc_history_colPos()