1
0
Fork 0
forked from fun/fun

Added some standard C regex implementation. (0.20.0)

This commit is contained in:
Johannes Findeisen 2025-10-04 01:49:22 +02:00
commit 94602f0855
12 changed files with 438 additions and 1 deletions

View file

@ -98,6 +98,9 @@ static const char *opcode_name(OpCode op) {
case OP_JOIN: return "JOIN";
case OP_SUBSTR: return "SUBSTR";
case OP_FIND: return "FIND";
case OP_REGEX_MATCH: return "REGEX_MATCH";
case OP_REGEX_SEARCH: return "REGEX_SEARCH";
case OP_REGEX_REPLACE: return "REGEX_REPLACE";
case OP_CONTAINS: return "CONTAINS";
case OP_INDEX_OF: return "INDEX_OF";
case OP_CLEAR: return "CLEAR";