comparison src/core/ngx_string.h @ 1029:ce08bc4cb97b

ngx_strn2cmp() > ngx_memn2cmp()
author Igor Sysoev <igor@sysoev.ru>
date Fri, 12 Jan 2007 21:58:02 +0000
parents eeadc558e86d
children db7c468c447d
comparison
equal deleted inserted replaced
1028:af57bfd77b7f 1029:ce08bc4cb97b
128 u_char * ngx_cdecl ngx_snprintf(u_char *buf, size_t max, const char *fmt, ...); 128 u_char * ngx_cdecl ngx_snprintf(u_char *buf, size_t max, const char *fmt, ...);
129 u_char *ngx_vsnprintf(u_char *buf, size_t max, const char *fmt, va_list args); 129 u_char *ngx_vsnprintf(u_char *buf, size_t max, const char *fmt, va_list args);
130 130
131 ngx_int_t ngx_rstrncmp(u_char *s1, u_char *s2, size_t n); 131 ngx_int_t ngx_rstrncmp(u_char *s1, u_char *s2, size_t n);
132 ngx_int_t ngx_rstrncasecmp(u_char *s1, u_char *s2, size_t n); 132 ngx_int_t ngx_rstrncasecmp(u_char *s1, u_char *s2, size_t n);
133 ngx_int_t ngx_strn2cmp(u_char *s1, u_char *s2, size_t n1, size_t n2); 133 ngx_int_t ngx_memn2cmp(u_char *s1, u_char *s2, size_t n1, size_t n2);
134 134
135 ngx_int_t ngx_atoi(u_char *line, size_t n); 135 ngx_int_t ngx_atoi(u_char *line, size_t n);
136 ssize_t ngx_atosz(u_char *line, size_t n); 136 ssize_t ngx_atosz(u_char *line, size_t n);
137 off_t ngx_atoof(u_char *line, size_t n); 137 off_t ngx_atoof(u_char *line, size_t n);
138 time_t ngx_atotm(u_char *line, size_t n); 138 time_t ngx_atotm(u_char *line, size_t n);