violates C standard, by lying on structure alignment. Only use if no other choice to achieve best performance on target platform */
| 164 | /* violates C standard, by lying on structure alignment. |
| 165 | Only use if no other choice to achieve best performance on target platform */ |
| 166 | MEM_STATIC U16 MEM_read16(const void* memPtr) { return *(const U16*) memPtr; } |
| 167 | MEM_STATIC U32 MEM_read32(const void* memPtr) { return *(const U32*) memPtr; } |
| 168 | MEM_STATIC U64 MEM_read64(const void* memPtr) { return *(const U64*) memPtr; } |
| 169 | MEM_STATIC size_t MEM_readST(const void* memPtr) { return *(const size_t*) memPtr; } |
no outgoing calls
no test coverage detected