| 418 | |
| 419 | |
| 420 | LUALIB_API lua_Number luaL_checknumber (lua_State *L, int arg) { |
| 421 | int isnum; |
| 422 | lua_Number d = lua_tonumberx(L, arg, &isnum); |
| 423 | if (!isnum) |
| 424 | tag_error(L, arg, LUA_TNUMBER); |
| 425 | return d; |
| 426 | } |
| 427 | |
| 428 | |
| 429 | LUALIB_API lua_Number luaL_optnumber (lua_State *L, int arg, lua_Number def) { |
no test coverage detected