Searched refs:emptyline (Results 1 – 2 of 2) sorted by relevance
| /freebsd-13.1/contrib/bc/include/ |
| H A D | num.h | 814 void bc_num_printDebug(const BcNum *n, const char *name, bool emptyline); 822 void bc_num_printDigs(const BcDig* n, size_t len, bool emptyline); 830 void bc_num_printWithDigs(const BcNum *n, const char *name, bool emptyline);
|
| /freebsd-13.1/contrib/bc/src/ |
| H A D | num.c | 3867 void bc_num_printDebug(const BcNum *n, const char *name, bool emptyline) { in bc_num_printDebug() argument 3872 if (emptyline) bc_file_putchar(&vm.fout, bc_flush_err, '\n'); in bc_num_printDebug() 3876 void bc_num_printDigs(const BcDig *n, size_t len, bool emptyline) { in bc_num_printDigs() argument 3884 if (emptyline) bc_file_putchar(&vm.fout, bc_flush_err, '\n'); in bc_num_printDigs() 3888 void bc_num_printWithDigs(const BcNum *n, const char *name, bool emptyline) { in bc_num_printWithDigs() argument 3892 bc_num_printDigs(n->num, n->len, emptyline); in bc_num_printWithDigs()
|