| 288 | } |
| 289 | |
| 290 | RESTORE_WARNING_UNREACHABLE_CODE |
| 291 | |
| 292 | void |
| 293 | nhl_add_table_entry_int(lua_State *L, const char *name, lua_Integer value) |
| 294 | { |
| 295 | lua_pushstring(L, name); |
| 296 | lua_pushinteger(L, value); |
| 297 | lua_rawset(L, -3); |
| 298 | } |
| 299 | |
| 300 | void |
| 301 | nhl_add_table_entry_char(lua_State *L, const char *name, char value) |
no outgoing calls
no test coverage detected