| 3452 | } |
| 3453 | |
| 3454 | int |
| 3455 | get_table_objclass(lua_State *L) |
| 3456 | { |
| 3457 | char *s = get_table_str_opt(L, "class", NULL); |
| 3458 | int ret = -1; |
| 3459 | |
| 3460 | if (s && strlen(s) == 1) |
| 3461 | ret = (int) *s; |
| 3462 | Free(s); |
| 3463 | return ret; |
| 3464 | } |
| 3465 | |
| 3466 | /* find object otyp by text s (optionally considering oclass) */ |
| 3467 | staticfn int |
no test coverage detected