semweb and http compile now (but they don't work properly yet).

This commit is contained in:
Vitor Santos Costa
2010-07-15 23:35:37 +01:00
parent 12fe06aa2e
commit 6183ff0282
158 changed files with 82184 additions and 1 deletions

18
packages/semweb/murmur.h Normal file
View File

@@ -0,0 +1,18 @@
/* $Id$
Part of SWI-Prolog
Author: Austin Appleby
License: Public domain
See: http://murmurhash.googlepages.com/
*/
#ifndef PL_HASH_H_INCLUDED
#define PL_HASH_H_INCLUDED
#define MURMUR_SEED (0x1a3be34a)
unsigned int
rdf_murmer_hash(const void *key, int len, unsigned int seed);
#endif /*PL_HASH_H_INCLUDED*/