/* CSE 333 Su12 Lecture 7 demo: include_solution/ht.h */
/* Gribble/Perkins */

#ifndef _HT_H_
#define _HT_H_

#include "ll.h"

typedef void *HashTable;

// A hypothetical function
LinkedList HTKeyList(HashTable t);

#endif  // _HT_H_