** Add a numeral to the buffer. */
| 467 | ** Add a numeral to the buffer. |
| 468 | */ |
| 469 | static void addnum2buff (BuffFS *buff, TValue *num) { |
| 470 | char *numbuff = getbuff(buff, MAXNUMBER2STR); |
| 471 | int len = tostringbuff(num, numbuff); /* format number into 'numbuff' */ |
| 472 | addsize(buff, len); |
| 473 | } |
| 474 | |
| 475 | |
| 476 | /* |
no test coverage detected