MCPcopy Create free account
hub / github.com/ChaiScript/ChaiScript / cast_module_symbol

Function cast_module_symbol

src/libfuzzer_client.cpp:58–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56
57
58void *cast_module_symbol(std::vector<std::string> (*t_path)())
59{
60 union cast_union
61 {
62 std::vector<std::string> (*in_ptr)();
63 void *out_ptr;
64 };
65
66 cast_union c;
67 c.in_ptr = t_path;
68 return c.out_ptr;
69}
70
71std::vector<std::string> default_search_paths()
72{

Callers 1

default_search_pathsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected