| 642 | } |
| 643 | |
| 644 | MEM_STATIC void MEM_writeBEST(void* memPtr, size_t val) |
| 645 | { |
| 646 | if (MEM_32bits()) |
| 647 | MEM_writeBE32(memPtr, (U32)val); |
| 648 | else |
| 649 | MEM_writeBE64(memPtr, (U64)val); |
| 650 | } |
| 651 | |
| 652 | |
| 653 | #if defined (__cplusplus) |
nothing calls this directly
no test coverage detected