#include <stdlib.h>
#include <intrin.h>
Go to the source code of this file.
◆ byteReverse()
Definition at line 8 of file util.c.
9{
11
12 do
13 {
14#if 0
15 t = (
unsigned int)((
unsigned)
buf[3] << 8 |
buf[2]) << 16 |
16 ((
unsigned)
buf[1] << 8 |
buf[0]);
17#else
19#endif
20 *(
unsigned int *)
buf =
t;
22 } while (--longs);
23}
unsigned int(__cdecl typeof(jpeg_read_scanlines))(struct jpeg_decompress_struct *
GLenum GLuint GLenum GLsizei const GLchar * buf
_Check_return_ unsigned long __cdecl _byteswap_ulong(_In_ unsigned long)