| 870 | } |
| 871 | |
| 872 | bool tpt_lua_equalsString(lua_State *L, int index, const char *data, size_t size) |
| 873 | { |
| 874 | return lua_isstring(L, index) && lua_objlen(L, index) == size && !memcmp(lua_tostring(L, index), data, size); |
| 875 | } |
| 876 | |
| 877 | int tpt_lua_pcall(lua_State *L, int numArgs, int numResults, int errorFunc, EventTraits newEventTraits) |
| 878 | { |
no outgoing calls
no test coverage detected