2 * Copyright 2008, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
6 #include "compatibility.h"
10 #include "fssh_byte_order.h"
14 __fssh_swap_int16(uint16_t value
)
16 return __swap_int16(value
);
20 __fssh_swap_int32(uint32_t value
)
22 return __swap_int32(value
);
26 __fssh_swap_int64(uint64_t value
)
28 return __swap_int64(value
);