summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Werle <joseph.werle@gmail.com>2014-05-05 11:31:38 -0400
committerJoseph Werle <joseph.werle@gmail.com>2014-05-05 11:31:45 -0400
commitf3f445d2746def10896e8a62130e94ecd3025708 (patch)
tree9374913deb38b59fc9d853172b9c4de1a7cfaef2
parent139689b808e5eda36abab272326b6c63db85660a (diff)
update readme
-rw-r--r--README.md14
1 files changed, 11 insertions, 3 deletions
diff --git a/README.md b/README.md
index af90198..cfdd559 100644
--- a/README.md
+++ b/README.md
@@ -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
```