_byteswap_uint64, _byteswap_ulong, _byteswap_ushort
정수의 바이트 순서를 반대로 바꿉니다.
unsigned short _byteswap_ushort (
unsigned short val
);
unsigned long _byteswap_ulong (
unsigned long val
);
unsigned __int64 _byteswap_uint64 (
unsigned __int64 val
);
매개 변수
- val
바이트 순서를 반대로 하는 정수입니다.
요구 사항
루틴 |
필수 헤더 |
---|---|
_byteswap_ushort |
<stdlib.h> |
_byteswap_ulong |
<stdlib.h> |
_byteswap_uint64 |
<stdlib.h> |
호환성에 대한 자세한 내용은 소개 단원의 호환성 부분을 참조하십시오.
예제
// crt_byteswap.c
#include <stdlib.h>
int main()
{
unsigned __int64 u64 = 0x0102030405060708;
unsigned long ul = 0x01020304;
printf("byteswap of %I64x = %I64x\n", u64, _byteswap_uint64(u64));
printf("byteswap of %Ix = %Ix", ul, _byteswap_ulong(ul));
}