mirror of
https://github.com/ziglang/zig.git
synced 2026-01-24 00:05:28 +00:00
7 lines
168 B
C
7 lines
168 B
C
unsigned short __cdecl _byteswap_ushort(unsigned short _Short);
|
|
|
|
unsigned short __cdecl _byteswap_ushort(unsigned short _Short)
|
|
{
|
|
return __builtin_bswap16(_Short);
|
|
}
|