mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-12 10:00:17 +01:00
We have 3 copies of this function, so put it in the shared static library. Reviewed-by: Tapani Pälli <tapani.palli@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34118>
15 lines
310 B
C
15 lines
310 B
C
/*
|
|
* Copyright 2024-2025 Intel Corporation
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
const char *ascii85_decode_char(const char *in, uint32_t *v);
|
|
|
|
int zlib_inflate(uint32_t **ptr, int len);
|
|
|
|
int ascii85_decode(const char *in, uint32_t **out, bool inflate);
|