function calls internal function, that calls external function "Recaller"
| 17 | |
| 18 | // function calls internal function, that calls external function "Recaller" |
| 19 | int Recaller3(int testA, int testB) |
| 20 | { |
| 21 | nullcRunFunction("inside2", testA, testB); |
| 22 | return nullcGetResultInt(); |
| 23 | } |
| 24 | |
| 25 | // function calls function by NULLC pointer |
| 26 | int RecallerPtr(NULLCFuncPtr func) |
no test coverage detected