hash.cc 620 Bytes
Newer Older
gejun's avatar
gejun committed
1 2 3 4
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5
#include "butil/hash.h"
gejun's avatar
gejun committed
6

7
// Definition in butil/third_party/superfasthash/superfasthash.c. (Third-party
gejun's avatar
gejun committed
8 9 10 11
// code did not come with its own header file, so declaring the function here.)
// Note: This algorithm is also in Blink under Source/wtf/StringHasher.h.
extern "C" uint32_t SuperFastHash(const char* data, int len);

12
namespace butil {
gejun's avatar
gejun committed
13 14 15 16 17

uint32_t SuperFastHash(const char* data, int len) {
  return ::SuperFastHash(data, len);
}

18
}  // namespace butil