| 298 | } |
| 299 | |
| 300 | void |
| 301 | nhl_add_table_entry_char(lua_State *L, const char *name, char value) |
| 302 | { |
| 303 | char buf[2]; |
| 304 | Sprintf(buf, "%c", value); |
| 305 | lua_pushstring(L, name); |
| 306 | lua_pushstring(L, buf); |
| 307 | lua_rawset(L, -3); |
| 308 | } |
| 309 | |
| 310 | void |
| 311 | nhl_add_table_entry_str(lua_State *L, const char *name, const char *value) |
no outgoing calls
no test coverage detected