comparison src/core/ngx_array.h @ 91:637625a2acdb

nginx-0.0.1-2003-05-19-20:39:14 import
author Igor Sysoev <igor@sysoev.ru>
date Mon, 19 May 2003 16:39:14 +0000
parents 0e81ac0bb3e2
children 7ebc8b7fb816
comparison
equal deleted inserted replaced
90:37530da31268 91:637625a2acdb
5 #include <ngx_config.h> 5 #include <ngx_config.h>
6 6
7 #include <ngx_alloc.h> 7 #include <ngx_alloc.h>
8 8
9 typedef struct { 9 typedef struct {
10 char *elts; 10 void *elts;
11 int nelts; 11 int nelts;
12 size_t size; 12 size_t size;
13 int nalloc; 13 int nalloc;
14 ngx_pool_t *pool; 14 ngx_pool_t *pool;
15 } ngx_array_t; 15 } ngx_array_t;