diff options
author | Joseph Werle <joseph.werle@gmail.com> | 2014-05-05 11:31:38 -0400 |
---|---|---|
committer | Joseph Werle <joseph.werle@gmail.com> | 2014-05-05 11:31:45 -0400 |
commit | f3f445d2746def10896e8a62130e94ecd3025708 (patch) | |
tree | 9374913deb38b59fc9d853172b9c4de1a7cfaef2 /README.md | |
parent | 139689b808e5eda36abab272326b6c63db85660a (diff) |
update readme
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -17,10 +17,18 @@ of MurmurHash. $ clib install jwerle/murmurhash.c ``` +source: + +```sh +$ git clone git@github.com:jwerle/murmurhash.c.git +$ cd murmurhash.c +$ make +$ make install +``` + ## example ```c - #include <stdlib.h> #include <string.h> #include <murmurhash.h> @@ -36,12 +44,12 @@ main (void) { A command line executable is also available: -``` +```sh $ echo -n kinkajou | murmur 3067714808 ``` -``` +```sh $ echo -n panda | murmur --seed=10 1406483717 ``` |