| 465 | } |
| 466 | |
| 467 | SZ_DYNAMIC sz_cptr_t sz_find(sz_cptr_t haystack, sz_size_t h_length, sz_cptr_t needle, sz_size_t n_length) { |
| 468 | return sz_dispatch_table.find(haystack, h_length, needle, n_length); |
| 469 | } |
| 470 | |
| 471 | SZ_DYNAMIC sz_cptr_t sz_rfind(sz_cptr_t haystack, sz_size_t h_length, sz_cptr_t needle, sz_size_t n_length) { |
| 472 | return sz_dispatch_table.rfind(haystack, h_length, needle, n_length); |
no test coverage detected
searching dependent graphs…