diff options
| author | Tyge Løvset <[email protected]> | 2022-08-02 23:56:07 +0200 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2022-08-02 23:56:07 +0200 |
| commit | f738106b75d9c4d7998294ffac9ee43f04e18667 (patch) | |
| tree | ecb013116f138ccb0ed3e8b15c4780318659047b /docs/cregex_api.md | |
| parent | 2329ff3b35d80a4c357708ed9456d72f6db6a5dd (diff) | |
| download | STC-modified-f738106b75d9c4d7998294ffac9ee43f04e18667.tar.gz STC-modified-f738106b75d9c4d7998294ffac9ee43f04e18667.zip | |
Removed mflags parameter in cregex_is_match(input, re).
Diffstat (limited to 'docs/cregex_api.md')
| -rw-r--r-- | docs/cregex_api.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/cregex_api.md b/docs/cregex_api.md index f95b8114..34278905 100644 --- a/docs/cregex_api.md +++ b/docs/cregex_api.md @@ -37,7 +37,7 @@ int cregex_find_sv(csview input, const cregex* re, csview match[]); // takes string pattern instead of re. (for one-time matches) int cregex_find_p(const char* input, const char* pattern, csview match[], int cmflags); -bool cregex_is_match(const char* input, const cregex* re, int mflags); +bool cregex_is_match(const char* input, const cregex* re); cstr cregex_replace(const char* input, const cregex* re, const char* replace, unsigned count); cstr cregex_replace_ex(const char* input, const cregex* re, const char* replace, unsigned count, |
