/
lib/objects/
lib/rooms/
lib/scripts/
lib/security/
src/banner/
src/util/
struct StrHeapList {
   char *string;   /* the matching string */
   int  total;     /* total # of occurences */
};

struct StrHeap {
   int uniq;   /* number of uniq items in list */
   struct StrHeapList *str;   /* the list of strings and totals */
};