diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-09-26 19:25:52 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-09-26 19:25:52 +0000 |
commit | 1bd987019d4700636e2ded5acfae7a81185a512e (patch) | |
tree | 14743576aba19dc03de737574744ecc1d843bfac /src/core/ngx_string.h | |
parent | 066e6323c5d7fc9f351290d0f36d6565b7c0f66f (diff) | |
download | nginx-1bd987019d4700636e2ded5acfae7a81185a512e.tar.gz nginx-1bd987019d4700636e2ded5acfae7a81185a512e.zip |
ngx_strstrn() and ngx_strcasestrn()
Diffstat (limited to 'src/core/ngx_string.h')
-rw-r--r-- | src/core/ngx_string.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/ngx_string.h b/src/core/ngx_string.h index 42d50a46c..a1da15f6b 100644 --- a/src/core/ngx_string.h +++ b/src/core/ngx_string.h @@ -126,6 +126,9 @@ u_char *ngx_vsnprintf(u_char *buf, size_t max, const char *fmt, va_list args); ngx_int_t ngx_strcasecmp(u_char *s1, u_char *s2); ngx_int_t ngx_strncasecmp(u_char *s1, u_char *s2, size_t n); +u_char *ngx_strstrn(u_char *s1, char *s2, size_t n); +u_char *ngx_strcasestrn(u_char *s1, char *s2, size_t n); + ngx_int_t ngx_rstrncmp(u_char *s1, u_char *s2, size_t n); ngx_int_t ngx_rstrncasecmp(u_char *s1, u_char *s2, size_t n); ngx_int_t ngx_memn2cmp(u_char *s1, u_char *s2, size_t n1, size_t n2); |