typedef struct *
typedef struct hashnode_struct{
struct hashnode_struct *next;
const char *key;
void *val;
}* hashnode, _hashnode;
?
_hashnode obj;
hashnode p = &obj;