| 392 | } |
| 393 | |
| 394 | static SQInteger _rexobj_releasehook(SQUserPointer p, SQInteger SQ_UNUSED_ARG(size)) |
| 395 | { |
| 396 | SQRex *self = ((SQRex *)p); |
| 397 | sqstd_rex_free(self); |
| 398 | return 1; |
| 399 | } |
| 400 | |
| 401 | static SQInteger _regexp_match(HSQUIRRELVM v) |
| 402 | { |
nothing calls this directly
no test coverage detected