diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-10-27 20:18:30 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-10-27 20:35:30 -0400 |
| commit | 052316261a94f2846e7547b65b2bb089979ce5ba (patch) | |
| tree | c8fb81d6657ac3931ef0212976f2346fc84e3f54 /stdlib/patterns.h | |
| parent | 41c0ea851a542bcd7d54b8c5c06d70e1e00095e1 (diff) | |
Finish deprecating stack refs with &
Diffstat (limited to 'stdlib/patterns.h')
| -rw-r--r-- | stdlib/patterns.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/patterns.h b/stdlib/patterns.h index c1246b1e..9cfbcd6b 100644 --- a/stdlib/patterns.h +++ b/stdlib/patterns.h @@ -18,7 +18,7 @@ Pattern_t Pattern$escape_text(Text_t text); Text_t Text$replace_all(Text_t text, Table_t replacements, Pattern_t backref_pat, bool recursive); Array_t Text$split(Text_t text, Pattern_t pattern); Text_t Text$trim(Text_t text, Pattern_t pattern, bool trim_left, bool trim_right); -Int_t Text$find(Text_t text, Pattern_t pattern, Int_t i, int64_t *match_length); +Int_t Text$find(Text_t text, Pattern_t pattern, Int_t i); Array_t Text$find_all(Text_t text, Pattern_t pattern); PUREFUNC bool Text$has(Text_t text, Pattern_t pattern); Array_t Text$matches(Text_t text, Pattern_t pattern); |
