| 428 | |
| 429 | |
| 430 | LUALIB_API lua_Integer luaL_checkinteger (lua_State *L, int arg) { |
| 431 | int isnum; |
| 432 | lua_Integer d = lua_tointegerx(L, arg, &isnum); |
| 433 | if (!isnum) { |
| 434 | interror(L, arg); |
| 435 | } |
| 436 | return d; |
| 437 | } |
| 438 | |
| 439 | |
| 440 | LUALIB_API lua_Integer luaL_optinteger (lua_State *L, int arg, |
no test coverage detected