1
0
Fork 0
forked from fun/fun

More OpenSSL and documenation fun. No more words to say. (0.38.13)

This commit is contained in:
Johannes Findeisen 2026-02-19 14:05:14 +01:00
commit 38968a9a51
33 changed files with 498 additions and 88 deletions

14
docs/external/pcre2.md vendored Normal file
View file

@ -0,0 +1,14 @@
# PCRE2 (Perl-Compatible Regex) extension (optional)
- CMake option: FUN_WITH_PCRE2=ON
- Purpose: Advanced regular expressions via PCRE2.
- Homepage: https://www.pcre.org/
Opcodes:
- OP_PCRE2_TEST: pops flags, text, pattern; pushes 1/0
- OP_PCRE2_MATCH: pops flags, text, pattern; pushes match map or Nil
- OP_PCRE2_FINDALL: pops flags, text, pattern; pushes array of match maps
Notes:
- Requires PCRE2 development headers/libs.
- Flags are backend-specific; see implementation for supported bits.