typedef struct *
typedef struct hashnode_struct{
struct hashnode_struct *next;
const char *key;
void *val;
}* hashnode, _hashnode;
?
_hashnode obj;
hashnode p = &obj;
?
发布时间: 2013-01-17 10:28:54 作者: rapoo
typedef struct *
typedef struct hashnode_struct{
struct hashnode_struct *next;
const char *key;
void *val;
}* hashnode, _hashnode;
?
_hashnode obj;
hashnode p = &obj;
?