diff options
author | Jakub Marcowski <chubercikbattle@gmail.com> | 2024-03-11 03:15:07 +0100 |
---|---|---|
committer | Jakub Marcowski <chubercikbattle@gmail.com> | 2024-03-11 11:42:02 +0100 |
commit | dab95993c6c8ebd4fb439385a892dabda22698a2 (patch) | |
tree | 98084c35eb94c5ab63c7be5d564251b3d18dc70d /thirdparty/pcre2/src/pcre2_match_data.c | |
parent | 810f127022ec2cbfb288e436151d1a777c7b5da7 (diff) | |
download | redot-engine-dab95993c6c8ebd4fb439385a892dabda22698a2.tar.gz |
pcre2: Update to 10.43
Diffstat (limited to 'thirdparty/pcre2/src/pcre2_match_data.c')
-rw-r--r-- | thirdparty/pcre2/src/pcre2_match_data.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/thirdparty/pcre2/src/pcre2_match_data.c b/thirdparty/pcre2/src/pcre2_match_data.c index fa129b8bc5..757dab9df5 100644 --- a/thirdparty/pcre2/src/pcre2_match_data.c +++ b/thirdparty/pcre2/src/pcre2_match_data.c @@ -170,4 +170,16 @@ return offsetof(pcre2_match_data, ovector) + 2 * (match_data->oveccount) * sizeof(PCRE2_SIZE); } + + +/************************************************* +* Get heapframes size * +*************************************************/ + +PCRE2_EXP_DEFN PCRE2_SIZE PCRE2_CALL_CONVENTION +pcre2_get_match_data_heapframes_size(pcre2_match_data *match_data) +{ +return match_data->heapframes_size; +} + /* End of pcre2_match_data.c */ |