1
0
mirror of https://git.lain.church/emil/libhl.git synced 2025-06-15 23:17:57 +00:00

symbolic regex integration

This commit is contained in:
anon
2023-08-24 01:59:59 +02:00
parent 79c45b5e2c
commit 3073434501
4 changed files with 305 additions and 836 deletions

View File

@ -3,4 +3,6 @@
extern bool is_case_on;
extern int regex_match(const char * const pattern, const char * const string, const int string_offset, int * match_offset_);
extern regex_t * regex_compile(const char * const pattern);
extern int regex_match(const char * const pattern, const char * const string, const int string_offset, int * match_offset_);
extern int regex_free(regex_t * const regex);