mirror of
https://github.com/nginx/nginx.git
synced 2024-12-12 18:29:00 +08:00
24 lines
365 B
C
24 lines
365 B
C
|
|
/*
|
|
* 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
|
|
|
|
|
|
ssize_t ngx_parse_size(ngx_str_t *line);
|
|
off_t ngx_parse_offset(ngx_str_t *line);
|
|
ngx_int_t ngx_parse_time(ngx_str_t *line, ngx_uint_t sec);
|
|
|
|
|
|
#endif /* _NGX_PARSE_H_INCLUDED_ */
|