MCPcopy Create free account
hub / github.com/WheretIB/nullc / nullcGetModule

Function nullcGetModule

NULLC/nullc.cpp:979–987  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

977}
978
979const void* nullcGetModule(const char* path)
980{
981 char fullPath[256];
982 SafeSprintf(fullPath, 256, "%s%s", BinaryCache::GetImportPath(), path);
983 const char *bytecode = BinaryCache::GetBytecode(fullPath);
984 if(!bytecode)
985 bytecode = BinaryCache::GetBytecode(path);
986 return bytecode;
987}
988
989#ifndef NULLC_NO_EXECUTOR
990ExternTypeInfo* nullcDebugTypeInfo(unsigned int *count)

Callers 2

BuildModuleFunction · 0.85
ImportEndFunction · 0.85

Calls 1

SafeSprintfFunction · 0.70

Tested by

no test coverage detected