Share via


_byteswap_uint64

This function returns the argument value with its bytes in reverse order.

unsigned __int64 __cdecl _byteswap_uint64(
  unsigned __int64 arg1
);

Parameters

  • arg1
    [in] The eight-byte integer that the function operates on.

Return Values

The value of the argument with bytes reversed.

Remarks

This function can be used to translate between big-endian and little endian data representations.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Cmnintrin.h.

See Also

Common Intrinsic Functions

 Last updated on Thursday, April 08, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.