mirror of /home/gitosis/repositories/libowfat.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
268 B
10 lines
268 B
![]()
21 years ago
|
#define NO_UINT32_MACROS
|
||
|
#include "uint32.h"
|
||
|
|
||
|
uint32 uint32_read(const char *in) {
|
||
|
return (((uint32)(unsigned char)in[3])<<24) |
|
||
|
(((uint32)(unsigned char)in[2])<<16) |
|
||
|
(((uint32)(unsigned char)in[1])<<8) |
|
||
|
(uint32)(unsigned char)in[0];
|
||
|
}
|