Home
last modified time | relevance | path

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

/external/bc/src/history/
Dhistory.c275 size_t pos, size_t *col_len) in bc_history_nextLen() argument
286 if (col_len != NULL) *col_len = bc_history_wchar(cp) ? 2 : 1; in bc_history_nextLen()
305 static size_t bc_history_prevLen(const char *buf, size_t pos, size_t *col_len) { in bc_history_prevLen() argument
318 if (col_len != NULL) *col_len = 1 + (bc_history_wchar(cp) != 0); in bc_history_prevLen()
385 size_t col_len, len; in bc_history_colPos() local
387 len = bc_history_nextLen(buf, buf_len, off, &col_len); in bc_history_colPos()
390 ret += col_len; in bc_history_colPos()