blob: e18b39a5dc9029e1e138cac78f4f906585e62522 [file] [log] [blame]
Simon Glasse1aba1e2019-11-14 12:57:25 -07001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright 2019 Google LLC
4 */
5
6#ifndef __LZ4_H
7#define __LZ4_H
8
9/**
10 * ulz4fn() - Decompress LZ4 data
11 *
12 * @src: Source data to decompress
13 * @srcn: Length of source data
14 * @dst: Destination for uncompressed data
15 * @dstn: Returns length of uncompressed data
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +010016 * Return: 0 if OK, -EPROTONOSUPPORT if the magic number or version number are
Simon Glasse1aba1e2019-11-14 12:57:25 -070017 * not recognised or independent blocks are used, -EINVAL if the reserved
18 * fields are non-zero, or input is overrun, -EENOBUFS if the destination
19 * buffer is overrun, -EEPROTO if the compressed data causes an error in
20 * the decompression algorithm
21 */
22int ulz4fn(const void *src, size_t srcn, void *dst, size_t *dstn);
23
24#endif