| 121 | } |
| 122 | |
| 123 | void* PlatformSpecificMemset(void* mem, int c, size_t size) |
| 124 | { |
| 125 | return memset(mem, c, size); |
| 126 | } |
| 127 | |
| 128 | PlatformSpecificFile PlatformSpecificFOpen(const char* filename, const char* flag) { |
| 129 | return fopen(filename, flag); |
no outgoing calls
no test coverage detected