| 2 | { |
| 3 | public: |
| 4 | static inline FILE* OpenFile(const char* path, const char* mode) |
| 5 | { |
| 6 | return fopen(path, mode); |
| 7 | }; |
| 8 | static inline int CloseFile(FILE* stream) |
| 9 | { |
| 10 | return fclose(stream); |
nothing calls this directly
no outgoing calls
no test coverage detected