** Add a numeral to the buffer. */
| 583 | ** Add a numeral to the buffer. |
| 584 | */ |
| 585 | static void addnum2buff (BuffFS *buff, TValue *num) { |
| 586 | char numbuff[LUA_N2SBUFFSZ]; |
| 587 | unsigned len = luaO_tostringbuff(num, numbuff); |
| 588 | addstr2buff(buff, numbuff, len); |
| 589 | } |
| 590 | |
| 591 | |
| 592 | /* |
no test coverage detected