blob: 44fff2e9592f8abecfc46e42a18991bf531787a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* Copyright (C) Igor Sysoev
*/
#ifndef _NGX_PARSE_H_INCLUDED_
#define _NGX_PARSE_H_INCLUDED_
#include <ngx_config.h>
#include <ngx_core.h>
#define NGX_PARSE_LARGE_TIME -2
ngx_int_t ngx_parse_size(ngx_str_t *line);
ngx_int_t ngx_parse_time(ngx_str_t *line, ngx_int_t sec);
#endif /* _NGX_PARSE_H_INCLUDED_ */
|