Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F9896403
regex.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1006 B
Referenced Files
None
Subscribers
None
regex.h
View Options
#ifndef REGEX_H
#define REGEX_H
#include
"types.h"
void
init_regex_module
(
void
);
void
cleanup_regex_module
(
void
);
void
gc_sweep_regex_cache
(
void
);
size_t
js_to_pcre2_pattern
(
const
char
*
src
,
size_t
src_len
,
char
*
dst
,
size_t
dst_size
);
ant_value_t
builtin_regexp_symbol_split
(
ant_t
*
js
,
ant_value_t
*
args
,
int
nargs
);
ant_value_t
builtin_regexp_symbol_match
(
ant_t
*
js
,
ant_value_t
*
args
,
int
nargs
);
ant_value_t
builtin_regexp_symbol_replace
(
ant_t
*
js
,
ant_value_t
*
args
,
int
nargs
);
ant_value_t
builtin_regexp_symbol_search
(
ant_t
*
js
,
ant_value_t
*
args
,
int
nargs
);
ant_value_t
builtin_regexp_flags_getter
(
ant_t
*
js
,
ant_value_t
*
args
,
int
nargs
);
ant_value_t
is_regexp_like
(
ant_t
*
js
,
ant_value_t
value
);
ant_value_t
reject_regexp_arg
(
ant_t
*
js
,
ant_value_t
value
,
const
char
*
method_name
);
ant_value_t
do_regex_match_pcre2
(
ant_t
*
js
,
const
char
*
pattern_ptr
,
ant_offset_t
pattern_len
,
const
char
*
str_ptr
,
ant_offset_t
str_len
,
bool
global_flag
,
bool
ignore_case
,
bool
multiline
);
#endif
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Sat, Aug 1, 12:55 PM (1 d, 12 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
589127
Default Alt Text
regex.h (1006 B)
Attached To
Mode
rANT Ant
Attached
Detach File
Event Timeline
Log In to Comment