/* * SPDX-License-Identifier: GPL-2.0 * * Copyright (c) 2008 Intel Corporation * Copyright (c) 2018 The Linux Foundation. All rights reserved. */ #ifndef _ASCII85_H_ #define _ASCII85_H_ #include <linux/math.h> #include <linux/types.h> #define ASCII85_BUFSZ … static inline long ascii85_encode_len(long len) { … } static inline const char * ascii85_encode(u32 in, char *out) { … } #endif