changing {} style to match majority of previous style

This commit is contained in:
Philippe Teuwen 2019-03-10 11:20:22 +01:00
commit 961d929f4d
320 changed files with 5502 additions and 10485 deletions

View file

@ -32,13 +32,11 @@
# define le32(x) (x)
#else
static inline uint16_t le16(uint16_t v)
{
static inline uint16_t le16(uint16_t v) {
return (v >> 8) | (v << 8);
}
static inline uint32_t le32(uint32_t v)
{
static inline uint32_t le32(uint32_t v) {
return (le16(v) << 16) | (le16(v >> 16));
}
#endif // HOST_LITTLE_ENDIAN