Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2003-10-23 19:54:19 +0400
committerIgor Sysoev <igor@sysoev.ru>2003-10-23 19:54:19 +0400
commit8556e6da41e80772cb9710e4309d9ad44a7b360e (patch)
tree8bb0a9f5b03e8c8fc6a2df3c1b51335dcdeae5ac /src/core/ngx_parse.h
parentf107910a9ef3b7de8752fc4e9e34cb69c1924a09 (diff)
nginx-0.0.1-2003-10-23-19:54:19 import
Diffstat (limited to 'src/core/ngx_parse.h')
-rw-r--r--src/core/ngx_parse.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/core/ngx_parse.h b/src/core/ngx_parse.h
new file mode 100644
index 000000000..a92eaeaf7
--- /dev/null
+++ b/src/core/ngx_parse.h
@@ -0,0 +1,16 @@
+#ifndef _NGX_PARSE_H_INCLUDED_
+#define _NGX_PARSE_H_INCLUDED_
+
+
+#include <ngx_config.h>
+#include <ngx_core.h>
+
+
+#define NGX_PARSE_LARGE_TIME -2
+
+
+int ngx_parse_size(ngx_str_t *line);
+int ngx_parse_time(ngx_str_t *line, int sec);
+
+
+#endif /* _NGX_PARSE_H_INCLUDED_ */