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