Ignore:
Timestamp:
Jul 14, 2020, 11:32:49 PM (4 years ago)
Author:
coas-nagasima
Message:

muslのソースコードを追加

File:
1 edited

Legend:

Unmodified
Added
Removed
  • EcnlProtoTool/trunk/musl-1.1.18/include/byteswap.h

    r321 r444  
    77static __inline uint16_t __bswap_16(uint16_t __x)
    88{
    9         return __x<<8 | __x>>8;
     9        return (__x<<8) | (__x>>8);
    1010}
    1111
    1212static __inline uint32_t __bswap_32(uint32_t __x)
    1313{
    14         return __x>>24 | __x>>8&0xff00 | __x<<8&0xff0000 | __x<<24;
     14        return (__x>>24) | ((__x>>8)&0xff00) | ((__x<<8)&0xff0000) | (__x<<24);
    1515}
    1616
    1717static __inline uint64_t __bswap_64(uint64_t __x)
    1818{
    19         return __bswap_32(__x)+0ULL<<32 | __bswap_32(__x>>32);
     19        return ((__bswap_32(__x)+0ULL)<<32) | __bswap_32(__x>>32);
    2020}
    2121
Note: See TracChangeset for help on using the changeset viewer.