MCPcopy Create free account
hub / github.com/apache/singa / FReopen

Function FReopen

test/gtest/gtest.h:2883–2885  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2881}
2882#if !GTEST_OS_WINDOWS_MOBILE
2883inline FILE *FReopen(const char* path, const char* mode, FILE* stream) {
2884 return freopen(path, mode, stream);
2885}
2886inline FILE* FDOpen(int fd, const char* mode) { return fdopen(fd, mode); }
2887#endif
2888inline int FClose(FILE* fp) { return fclose(fp); }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected