概述
1.整型的封装
typedef intptr_t ngx_int_t;
typedef uintptr_t ngx_uint_t;
2. 字符串的封装
typedef struct{
size_t len;
u_char *data;
} ngx_str_t;
ngx_str_t只有两个成员,data指向字符串起始地址,len表示字符串的有效长度。C语言中,字符串一般都是以'
1.整型的封装
typedef intptr_t ngx_int_t;
typedef uintptr_t ngx_uint_t;
2. 字符串的封装
typedef struct{
size_t len;
u_char *data;
} ngx_str_t;