Search for a string within another string
| 1804 | |
| 1805 | // Search for a string within another string |
| 1806 | FORCE_INLINE |
| 1807 | gdv_int32 locate_utf8_utf8(gdv_int64 context, const char* sub_str, gdv_int32 sub_str_len, |
| 1808 | const char* str, gdv_int32 str_len) { |
| 1809 | return locate_utf8_utf8_int32(context, sub_str, sub_str_len, str, str_len, 1); |
| 1810 | } |
| 1811 | |
| 1812 | // Search for a string within another string starting at position start-pos (1-indexed) |
| 1813 | FORCE_INLINE |