upstream nginx-0.7.31
[nginx.git] / nginx / src / core / ngx_parse.h
1
2 /*
3  * Copyright (C) Igor Sysoev
4  */
5
6
7 #ifndef _NGX_PARSE_H_INCLUDED_
8 #define _NGX_PARSE_H_INCLUDED_
9
10
11 #include <ngx_config.h>
12 #include <ngx_core.h>
13
14
15 #define NGX_PARSE_LARGE_TIME  -2
16
17
18 ssize_t ngx_parse_size(ngx_str_t *line);
19 off_t ngx_parse_offset(ngx_str_t *line);
20 ngx_int_t ngx_parse_time(ngx_str_t *line, ngx_uint_t sec);
21
22
23 #endif /* _NGX_PARSE_H_INCLUDED_ */