#ifndef HASH_H #define HASH_H struct hash_struct { struct command_struct *command; int hits; struct hash_struct *next; }; typedef struct hash_struct HASH; struct comm_alias { struct command_struct *command; char *alias; struct comm_alias *next; }; typedef struct comm_alias CALIAS; #endif HASH_H