TinyMAZE/
TinyMAZE/config/
TinyMAZE/doc/
TinyMAZE/run/msgs/
TinyMAZE/src/
TinyMAZE/src/db/
TinyMAZE/src/ident/
TinyMAZE/src/io/
TinyMAZE/src/prog/
TinyMAZE/src/softcode/
TinyMAZE/src/util/
#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