Create the AHCI branch for Aman's work
[reactos.git] / sdk / lib / cryptlib / util.h
1
2 #pragma once
3
4 #if defined(_MSC_VER) || (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__)
5 #define byteReverse(buf, long)((void)(buf, long))
6 #else
7 void
8 byteReverse(unsigned char *buf, unsigned longs);
9 #endif