From f738106b75d9c4d7998294ffac9ee43f04e18667 Mon Sep 17 00:00:00 2001 From: Tyge Løvset Date: Tue, 2 Aug 2022 23:56:07 +0200 Subject: Removed mflags parameter in cregex_is_match(input, re). --- docs/cregex_api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/cregex_api.md') 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, -- cgit v1.2.3