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