mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 23:13:34 +00:00
16 lines
487 B
PHP
16 lines
487 B
PHP
|
/* adler32_simd.h
|
||
|
*
|
||
|
* Copyright 2017 The Chromium Authors
|
||
|
* Use of this source code is governed by a BSD-style license that can be
|
||
|
* found in the Chromium source repository LICENSE file.
|
||
|
*/
|
||
|
|
||
|
#include "libc/inttypes.h"
|
||
|
#include "libc/limits.h"
|
||
|
#include "libc/literal.h"
|
||
|
#include "third_party/zlib/zconf.h"
|
||
|
#include "third_party/zlib/zutil.internal.h"
|
||
|
|
||
|
uint32_t ZLIB_INTERNAL adler32_simd_(uint32_t adler, const unsigned char *buf,
|
||
|
z_size_t len);
|