6D/
6D/area/
6D/boards/
6D/city/
6D/color/
6D/corpses/
6D/councils/
6D/htowns/
6D/news/
6D/specials/
6D/src/specials/
6D/src/trades/
/* New memory stuff */
typedef struct memory_strings_data MEMORY_DATA;
struct memory_strings_data
{
  MEMORY_DATA            *next;
  MEMORY_DATA            *prev;
  char                   *string;
  unsigned long int       links;
  unsigned long int       length;
  unsigned long int       linenumber;
  char                   *filename;
};
extern MEMORY_DATA     *first_memory;
extern MEMORY_DATA     *last_memory;