** Add a number to the buffer. */
| 447 | ** Add a number to the buffer. |
| 448 | */ |
| 449 | static void addnum2buff (BuffFS *buff, TValue *num) { |
| 450 | char *numbuff = getbuff(buff, MAXNUMBER2STR); |
| 451 | int len = tostringbuff(num, numbuff); /* format number into 'numbuff' */ |
| 452 | addsize(buff, len); |
| 453 | } |
| 454 | |
| 455 | |
| 456 | /* |
no test coverage detected