summaryrefslogtreecommitdiffhomepage
path: root/docs/cregex_api.md
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2022-08-02 23:56:07 +0200
committerTyge Løvset <[email protected]>2022-08-02 23:56:07 +0200
commitf738106b75d9c4d7998294ffac9ee43f04e18667 (patch)
treeecb013116f138ccb0ed3e8b15c4780318659047b /docs/cregex_api.md
parent2329ff3b35d80a4c357708ed9456d72f6db6a5dd (diff)
downloadSTC-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.md2
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,