Go to the source code of this file.
|
| typedef unsigned short | uint16 |
| |
| typedef unsigned long | uint32 |
| |
| typedef unsigned char | uint8 |
| |
◆ FAT_HTONL
Value:(((((
uint32)(n) & 0xFF)) << 24) | \
((((
uint32)(n) & 0xFF00)) << 8) | \
((((
uint32)(n) & 0xFF0000)) >> 8) | \
((((
uint32)(n) & 0xFF000000)) >> 24))
Definition at line 46 of file fat_types.h.
◆ FAT_HTONS
| #define FAT_HTONS |
( |
|
n | ) |
((((uint16)((n) & 0xff)) << 8) | (((n) & 0xff00) >> 8)) |
◆ NULL
◆ STRUCT_PACK
◆ STRUCT_PACK_BEGIN
| #define STRUCT_PACK_BEGIN |
◆ STRUCT_PACK_END
◆ STRUCT_PACKED
◆ uint16
◆ uint32
◆ uint8
| typedef unsigned char uint8 |