1/*
2 * Copyright 2008, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
5
6#include "compatibility.h"
7
8#include <ByteOrder.h>
9
10#include "fssh_byte_order.h"
11
12
13uint16_t
14__fssh_swap_int16(uint16_t value)
15{
16	return __swap_int16(value);
17}
18
19uint32_t
20__fssh_swap_int32(uint32_t value)
21{
22	return __swap_int32(value);
23}
24
25uint64_t
26__fssh_swap_int64(uint64_t value)
27{
28	return __swap_int64(value);
29}
30