File: I2PEndian.cpp

package info (click to toggle)
i2pd 2.58.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,612 kB
  • sloc: cpp: 59,663; makefile: 224; sh: 138
file content (52 lines) | stat: -rw-r--r-- 917 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
* Copyright (c) 2013-2022, The PurpleI2P Project
*
* This file is part of Purple i2pd project and licensed under BSD3
*
* See full license text in LICENSE file at top of project tree
*/

#include "I2PEndian.h"

// http://habrahabr.ru/post/121811/
// http://codepad.org/2ycmkz2y

#include "LittleBigEndian.h"

#ifdef NEEDS_LOCAL_ENDIAN
uint16_t htobe16(uint16_t int16)
{
	BigEndian<uint16_t> u16(int16);
	return u16.raw_value;
}

uint32_t htobe32(uint32_t int32)
{
	BigEndian<uint32_t> u32(int32);
	return u32.raw_value;
}

uint64_t htobe64(uint64_t int64)
{
	BigEndian<uint64_t> u64(int64);
	return u64.raw_value;
}

uint16_t be16toh(uint16_t big16)
{
	LittleEndian<uint16_t> u16(big16);
	return u16.raw_value;
}

uint32_t be32toh(uint32_t big32)
{
	LittleEndian<uint32_t> u32(big32);
	return u32.raw_value;
}

uint64_t be64toh(uint64_t big64)
{
	LittleEndian<uint64_t> u64(big64);
	return u64.raw_value;
}
#endif