https://github.com/splatlab/squeakr
Revision 87601477593969ffdfa3dad331dd51243562e35a authored by Prashant Pandey on 02 May 2017, 13:33:16 UTC, committed by Prashant Pandey on 02 May 2017, 13:33:16 UTC
1 parent f15a067
Tip revision: 87601477593969ffdfa3dad331dd51243562e35a authored by Prashant Pandey on 02 May 2017, 13:33:16 UTC
Changing the gzFile type to make it compatible for MAC OS 10.11 compatible.
Changing the gzFile type to make it compatible for MAC OS 10.11 compatible.
Tip revision: 8760147
hashutil.h
/*
* =====================================================================================
*
* Filename: hashutil.h
*
* Description:
*
* Version: 1.0
* Created: 04/18/2016 04:49:32 PM
* Revision: none
* Compiler: gcc
*
* Author: Prashant Pandey (ppandey@cs.stonybrook.edu)
* Rob Patro (rob.patro@cs.stonybrook.edu)
* Rob Johnson (rob@cs.stonybrook.edu)
* Organization: Stony Brook University
*
* =====================================================================================
*/
#ifndef _HASHUTIL_H_
#define _HASHUTIL_H_
#include <sys/types.h>
#include <string>
#include <stdlib.h>
#include <stdint.h>
#include <openssl/evp.h>
namespace kmercounting {
class HashUtil {
public:
static uint64_t MurmurHash64B ( const void * key, int len, unsigned int seed );
static uint64_t MurmurHash64A ( const void * key, int len, unsigned int seed );
private:
HashUtil();
};
} // namespace kmercounting
#endif // #ifndef _HASHUTIL_H_

Computing file changes ...