| 1011 | } |
| 1012 | |
| 1013 | RESTORE_WARNING_UNREACHABLE_CODE |
| 1014 | |
| 1015 | /* get mandatory integer value from table */ |
| 1016 | int |
| 1017 | get_table_int(lua_State *L, const char *name) |
| 1018 | { |
| 1019 | int ret; |
| 1020 | |
| 1021 | lua_getfield(L, -1, name); |
| 1022 | ret = (int) luaL_checkinteger(L, -1); |
| 1023 | lua_pop(L, 1); |
| 1024 | return ret; |
| 1025 | } |
| 1026 | |
| 1027 | /* get optional integer value from table */ |
| 1028 | int |
no outgoing calls
no test coverage detected