comparison src/core/ngx_regex.h @ 216:f1d0e5f09c1e

nginx-0.0.1-2003-12-25-23:26:58 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 25 Dec 2003 20:26:58 +0000
parents 8dee38ea9117
children da8c5707af39
comparison
equal deleted inserted replaced
215:5adc2b75f8a5 216:f1d0e5f09c1e
13 typedef pcre ngx_regex_t; 13 typedef pcre ngx_regex_t;
14 14
15 void ngx_regex_init(); 15 void ngx_regex_init();
16 ngx_regex_t *ngx_regex_compile(ngx_str_t *pattern, ngx_int_t options, 16 ngx_regex_t *ngx_regex_compile(ngx_str_t *pattern, ngx_int_t options,
17 ngx_pool_t *pool, ngx_str_t *err); 17 ngx_pool_t *pool, ngx_str_t *err);
18 ngx_int_t ngx_regex_exec(ngx_regex_t *re, ngx_str_t *s); 18 ngx_int_t ngx_regex_exec(ngx_regex_t *re, ngx_str_t *s,
19 int *matches, ngx_int_t size);
19 20
20 #define ngx_regex_exec_n "pcre_exec()" 21 #define ngx_regex_exec_n "pcre_exec()"
21 22
22 23
23 #endif /* _NGX_REGEX_H_INCLUDED_ */ 24 #endif /* _NGX_REGEX_H_INCLUDED_ */