Skip to content

Commit

Permalink
Add missing common.h and document installation. (fixes #1)
Browse files Browse the repository at this point in the history
  • Loading branch information
dcjones committed Jul 5, 2012
1 parent ba1fd6c commit 0128db2
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Expand Up @@ -20,4 +20,15 @@ For details see,
91–102). Springer.


Installation
------------

git clone git@github.com:dcjones/hat-trie.git
cd hat-trie
autoreconf -i
./configure
make install

To use the library, include `hat-trie.h` and link using `lhat-trie`.


19 changes: 19 additions & 0 deletions src/common.h
@@ -0,0 +1,19 @@
/*
* This file is part of hat-trie.
*
* Copyright (c) 2011 by Daniel C. Jones <dcjones@cs.washington.edu>
*
*
* Common typedefs, etc.
*
*/


#ifndef HATTRIE_COMMON_H
#define HATTRIE_COMMON_H

typedef unsigned long value_t;

#endif


0 comments on commit 0128db2

Please sign in to comment.