9 lines
307 B
C
9 lines
307 B
C
#include "chad.h"
|
|
#include <ctype.h>
|
|
|
|
extern bool is_case_on;
|
|
|
|
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);
|