File: re2_xs.h

package info (click to toggle)
libre-engine-re2-perl 0.17%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 444 kB
  • sloc: cpp: 271; perl: 80; makefile: 2; sh: 1
file content (11 lines) | stat: -rw-r--r-- 347 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"

START_EXTERN_C
EXTERN_C const regexp_engine re2_engine;
EXTERN_C void RE2_possible_match_range(pTHX_ REGEXP* rx, STRLEN len, SV **possible_min, SV **possible_max);
EXTERN_C HV* RE2_named_captures(pTHX_ REGEXP* rx);
EXTERN_C int RE2_number_of_capture_groups(pTHX_ REGEXP* rx);
END_EXTERN_C