Home
last modified time | relevance | path

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

/freebsd/contrib/bc/src/
H A Dlex.c167 for (i = 0; (c = buf[i]) && (BC_LEX_NUM_CHAR(c, pt, int_only) || in bc_lex_num()
186 if (!BC_LEX_NUM_CHAR(c, pt, int_only)) break; in bc_lex_num()
243 if (BC_ERR(!BC_LEX_NUM_CHAR(c, false, true))) in bc_lex_number()
H A Ddc_lex.c47 return !BC_LEX_NUM_CHAR(c, false, false); in dc_lex_negCommand()
248 if (BC_NO_ERR(BC_LEX_NUM_CHAR(c2, true, false))) in dc_lex_token()
H A Dbc_lex.c310 if (BC_LEX_NUM_CHAR(c2, true, false)) bc_lex_number(l, c); in bc_lex_token()
/freebsd/contrib/bc/include/
H A Dlex.h102 #define BC_LEX_NUM_CHAR(c, pt, int_only) \ macro