comparison src/core/ngx_string.h @ 3512:098100f5f54b

ngx_atofp()
author Igor Sysoev <igor@sysoev.ru>
date Fri, 14 May 2010 09:01:30 +0000
parents 98e288c6dac3
children dd1570b6f237
comparison
equal deleted inserted replaced
3511:e2fa6caf3305 3512:098100f5f54b
159 ngx_int_t ngx_rstrncasecmp(u_char *s1, u_char *s2, size_t n); 159 ngx_int_t ngx_rstrncasecmp(u_char *s1, u_char *s2, size_t n);
160 ngx_int_t ngx_memn2cmp(u_char *s1, u_char *s2, size_t n1, size_t n2); 160 ngx_int_t ngx_memn2cmp(u_char *s1, u_char *s2, size_t n1, size_t n2);
161 ngx_int_t ngx_dns_strcmp(u_char *s1, u_char *s2); 161 ngx_int_t ngx_dns_strcmp(u_char *s1, u_char *s2);
162 162
163 ngx_int_t ngx_atoi(u_char *line, size_t n); 163 ngx_int_t ngx_atoi(u_char *line, size_t n);
164 ngx_int_t ngx_atofp(u_char *line, size_t n, size_t point);
164 ssize_t ngx_atosz(u_char *line, size_t n); 165 ssize_t ngx_atosz(u_char *line, size_t n);
165 off_t ngx_atoof(u_char *line, size_t n); 166 off_t ngx_atoof(u_char *line, size_t n);
166 time_t ngx_atotm(u_char *line, size_t n); 167 time_t ngx_atotm(u_char *line, size_t n);
167 ngx_int_t ngx_hextoi(u_char *line, size_t n); 168 ngx_int_t ngx_hextoi(u_char *line, size_t n);
168 169