blob: 27c92b9294eb26243e5758c14f6a145208c08a04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/* We need access to debugger hooks */
#ifndef DEBUGGING
# define DEBUGGING
#endif
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
extern regexp* my_regcomp _((char* exp, char* xend, PMOP* pm));
extern I32 my_regexec _((regexp* prog, char* stringarg, char* strend,
char* strbeg, I32 minend, SV* screamer,
void* data, U32 flags));
static int oldfl;
#define R_DB 512
static void
deinstall(void)
{
dTHR;
PL_regexecp = ®exec_flags;
PL_regcompp = &pregcomp;
if (!oldfl)
PL_debug &= ~R_DB;
}
static void
install(void)
{
dTHR;
PL_regexecp = &my_regexec;
PL_regcompp = &my_regcomp;
oldfl = PL_debug & R_DB;
PL_debug |= R_DB;
}
MODULE = re PACKAGE = re
void
install()
void
deinstall()
|