| 64 | } |
| 65 | |
| 66 | static void execute_pvfv_array(_PVFV* begin, _PVFV* end) |
| 67 | { |
| 68 | _PVFV* fn = begin; |
| 69 | while (fn != end) |
| 70 | { |
| 71 | if (*fn) (**fn)(); |
| 72 | ++fn; |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | static int execute_pifv_array(_PIFV* begin, _PIFV* end) |
| 77 | { |
no outgoing calls
no test coverage detected