MCPcopy Create free account
hub / github.com/NoMercy-ac/NoMercy / execute_pifv_array

Function execute_pifv_array

Source/Client/NM_Sys/API/CppSupport.cpp:75–89  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73}
74
75static int execute_pifv_array(_PIFV* begin, _PIFV* end)
76{
77 _PIFV* fn = begin;
78 while (fn != end)
79 {
80 if (*fn)
81 {
82 int result = (**begin)();
83 if (result)
84 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