xref: /unit/src/nxt_conf.h (revision 29)
1*29Svbart@nginx.com 
2*29Svbart@nginx.com /*
3*29Svbart@nginx.com  * Copyright (C) Igor Sysoev
4*29Svbart@nginx.com  * Copyright (C) Valentin V. Bartenev
5*29Svbart@nginx.com  * Copyright (C) NGINX, Inc.
6*29Svbart@nginx.com  */
7*29Svbart@nginx.com 
8*29Svbart@nginx.com #ifndef _NXT_CONF_INCLUDED_
9*29Svbart@nginx.com #define _NXT_CONF_INCLUDED_
10*29Svbart@nginx.com 
11*29Svbart@nginx.com 
12*29Svbart@nginx.com typedef struct nxt_conf_json_value_s  nxt_conf_json_value_t;
13*29Svbart@nginx.com 
14*29Svbart@nginx.com 
15*29Svbart@nginx.com nxt_conf_json_value_t *nxt_conf_json_parse(nxt_buf_mem_t *b,
16*29Svbart@nginx.com     nxt_mem_pool_t *pool);
17*29Svbart@nginx.com 
18*29Svbart@nginx.com 
19*29Svbart@nginx.com #endif /* _NXT_CONF_INCLUDED_ */
20