We found many definitions like this
in mod_jk :
xxx.h
struct jk_map;
typedef struct jk_map jk_map_t;
xxx.c
struct jk_map {
jk_pool_t p;
jk_pool_atom_t buf[SMALL_POOL_SIZE];
char **names;
void **values;
unsigned capacity;
unsigned size;
};
Why not having it directly in xxx.h
typedef struct {
jk_pool_t p;
jk_pool_atom_t buf[SMALL_POOL_SIZE];
char **names;
void **values;
unsigned capacity;
unsigned size;
} jk_map_t;
-
Henri Gomez ___[_]____
EMAIL : [EMAIL PROTECTED] (. .)
PGP KEY : 697ECEDD ...oOOo..(_)..oOOo...
PGP Fingerprint : 9DF8 1EA8 ED53 2F39 DC9B 904A 364F 80E6