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/endian.h

    r331 r444  
    2525static __inline uint16_t __bswap16(uint16_t __x)
    2626{
    27         return __x<<8 | __x>>8;
     27        return (__x<<8) | (__x>>8);
    2828}
    2929
    3030static __inline uint32_t __bswap32(uint32_t __x)
    3131{
    32         return __x>>24 | __x>>8&0xff00 | __x<<8&0xff0000 | __x<<24;
     32        return (__x>>24) | ((__x>>8)&0xff00) | ((__x<<8)&0xff0000) | (__x<<24);
    3333}
    3434
    3535static __inline uint64_t __bswap64(uint64_t __x)
    3636{
    37         return __bswap32(__x)+0ULL<<32 | __bswap32(__x>>32);
     37        return ((__bswap32(__x)+0ULL)<<32) | __bswap32(__x>>32);
    3838}
    3939
Note: See TracChangeset for help on using the changeset viewer.