MCPcopy Create free account
hub / github.com/HoShiMin/Kernel-Bridge / execute_pifv_array

Function execute_pifv_array

Kernel-Bridge/API/CppSupport.cpp:76–89  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

74}
75
76static int execute_pifv_array(_PIFV* begin, _PIFV* end)
77{
78 _PIFV* fn = begin;
79 while (fn != end)
80 {
81 if (*fn)
82 {
83 int result = (**begin)();
84 if (result) return result;
85 }
86 ++fn;
87 }
88 return 0;
89}
90
91extern "C" int __crt_init()
92{

Callers 1

__crt_initFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected