blob: 52bb14d16751c8c4147c453bda937820331adb09 [file] [log] [blame]
Noel Gordon17bbb3d2017-09-29 19:44:25 +00001/* adler32_simd.h
2 *
3 * Copyright 2017 The Chromium Authors. All rights reserved.
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the Chromium source repository LICENSE file.
6 */
7
8#include <stdint.h>
9
10#include "zconf.h"
11#include "zutil.h"
12
13uint32_t ZLIB_INTERNAL adler32_simd_(
14 uint32_t adler,
15 const unsigned char *buf,
16 z_size_t len);