Searched refs:emptyline (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/bc/include/ |
H A D | num.h | 861 * @param emptyline True if there should be an empty line after the number. 864 bc_num_printDebug(const BcNum* n, const char* name, bool emptyline); 870 * @param emptyline True if there should be an empty line after the number. 873 bc_num_printDigs(const BcDig* n, size_t len, bool emptyline); 879 * @param emptyline True if there should be an empty line after the number. 882 bc_num_printWithDigs(const BcNum* n, const char* name, bool emptyline);
|
/freebsd/contrib/bc/src/ |
H A D | num.c | 4445 bc_num_printDebug(const BcNum* n, const char* name, bool emptyline) in bc_num_printDebug() argument 4451 if (emptyline) bc_file_putchar(&vm->fout, bc_flush_err, '\n'); in bc_num_printDebug() 4456 bc_num_printDigs(const BcDig* n, size_t len, bool emptyline) in bc_num_printDigs() argument 4466 if (emptyline) bc_file_putchar(&vm->fout, bc_flush_err, '\n'); in bc_num_printDigs() 4471 bc_num_printWithDigs(const BcNum* n, const char* name, bool emptyline) in bc_num_printWithDigs() argument 4476 bc_num_printDigs(n->num, n->len, emptyline); in bc_num_printWithDigs()
|