| 308 | } |
| 309 | |
| 310 | void |
| 311 | nhl_add_table_entry_str(lua_State *L, const char *name, const char *value) |
| 312 | { |
| 313 | lua_pushstring(L, name); |
| 314 | lua_pushstring(L, value); |
| 315 | lua_rawset(L, -3); |
| 316 | } |
| 317 | void |
| 318 | nhl_add_table_entry_bool(lua_State *L, const char *name, boolean value) |
| 319 | { |
no outgoing calls
no test coverage detected