Home | History | Annotate | Download | only in common
      1 /* Copyright (c) 2015 The Chromium OS Authors. All rights reserved.
      2  * Use of this source code is governed by a BSD-style license that can be
      3  * found in the LICENSE file.
      4  *
      5  * An incremental version of the SuperFastHash hash function from
      6  * http://www.azillionmonkeys.com/qed/hash.html
      7  * The code did not come with its own header file, so declaring the function
      8  * here.
      9  */
     10 
     11 #ifndef SFH_H_
     12 #define SFH_H_
     13 
     14 uint32_t SuperFastHash(const char *data, int len, uint32_t hash);
     15 
     16 #endif /* SFH_H_ */
     17