| 412 | |
| 413 | |
| 414 | LUALIB_API lua_Integer luaL_checkinteger (lua_State *L, int arg) { |
| 415 | int isnum; |
| 416 | lua_Integer d = lua_tointegerx(L, arg, &isnum); |
| 417 | if (!isnum) { |
| 418 | interror(L, arg); |
| 419 | } |
| 420 | return d; |
| 421 | } |
| 422 | |
| 423 | |
| 424 | LUALIB_API lua_Integer luaL_optinteger (lua_State *L, int arg, |
no test coverage detected