mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 08:08:53 -05:00
50ee0f5be8
Based on feedback from interested parties
54 lines
1.5 KiB
C
54 lines
1.5 KiB
C
// Copyright (c) 2011-2012, Salvatore Sanfilippo <antirez at gmail dot com>
|
|
// SPDX-FileCopyrightText: 2024 Redict Contributors
|
|
// SPDX-FileCopyrightText: 2024 Salvatore Sanfilippo <antirez at gmail dot com>
|
|
//
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
// SPDX-License-Identifier: LGPL-3.0-only
|
|
|
|
#ifndef __ENDIANCONV_H
|
|
#define __ENDIANCONV_H
|
|
|
|
#include "config.h"
|
|
#include <stdint.h>
|
|
|
|
void memrev16(void *p);
|
|
void memrev32(void *p);
|
|
void memrev64(void *p);
|
|
uint16_t intrev16(uint16_t v);
|
|
uint32_t intrev32(uint32_t v);
|
|
uint64_t intrev64(uint64_t v);
|
|
|
|
/* variants of the function doing the actual conversion only if the target
|
|
* host is big endian */
|
|
#if (BYTE_ORDER == LITTLE_ENDIAN)
|
|
#define memrev16ifbe(p) ((void)(0))
|
|
#define memrev32ifbe(p) ((void)(0))
|
|
#define memrev64ifbe(p) ((void)(0))
|
|
#define intrev16ifbe(v) (v)
|
|
#define intrev32ifbe(v) (v)
|
|
#define intrev64ifbe(v) (v)
|
|
#else
|
|
#define memrev16ifbe(p) memrev16(p)
|
|
#define memrev32ifbe(p) memrev32(p)
|
|
#define memrev64ifbe(p) memrev64(p)
|
|
#define intrev16ifbe(v) intrev16(v)
|
|
#define intrev32ifbe(v) intrev32(v)
|
|
#define intrev64ifbe(v) intrev64(v)
|
|
#endif
|
|
|
|
/* The functions htonu64() and ntohu64() convert the specified value to
|
|
* network byte ordering and back. In big endian systems they are no-ops. */
|
|
#if (BYTE_ORDER == BIG_ENDIAN)
|
|
#define htonu64(v) (v)
|
|
#define ntohu64(v) (v)
|
|
#else
|
|
#define htonu64(v) intrev64(v)
|
|
#define ntohu64(v) intrev64(v)
|
|
#endif
|
|
|
|
#ifdef REDICT_TEST
|
|
int endianconvTest(int argc, char *argv[], int flags);
|
|
#endif
|
|
|
|
#endif
|