2 * Copyright 2003-2007 Marcus Overhagen
3 * Copyright 2007 Haiku Inc. All rights reserved.
4 * Distributed under the terms of the MIT License.
10 #include <SupportDefs.h>
15 ByteSwap(uint32 format
);
18 void Swap(void *buffer
, size_t bytecount
);
21 void (*fFunc
)(void *, size_t);
26 ByteSwap::Swap(void *buffer
, size_t bytecount
)
28 (*fFunc
)(buffer
, bytecount
);
31 #endif // _BYTE_SWAP_H