| 79 | static FileExistsFunction g_file_exists_function = FileExistsRaw; |
| 80 | |
| 81 | bool LoadFile(const char *name, bool binary, std::string *buf) { |
| 82 | FLATBUFFERS_ASSERT(g_load_file_function); |
| 83 | return g_load_file_function(name, binary, buf); |
| 84 | } |
| 85 | |
| 86 | bool FileExists(const char *name) { |
| 87 | FLATBUFFERS_ASSERT(g_file_exists_function); |
no outgoing calls
no test coverage detected