lammps-sys 0.6.0

Generates bindings to LAMMPS' C interface (with optional builds from source)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Hash function hashlittle()
// from lookup3.c, by Bob Jenkins, May 2006, Public Domain
// bob_jenkins@burtleburtle.net

#ifndef LMP_HASHLITTLE_H
#define LMP_HASHLITTLE_H

#include <cstddef>
#include <stdint.h>

namespace LAMMPS_NS {
  uint32_t hashlittle(const void *key, size_t length, uint32_t);
}
#endif