| 950 | |
| 951 | |
| 952 | DEBUGGER_FFI_API char* BNDebuggerGetStopReasonString(BNDebugStopReason reason) |
| 953 | { |
| 954 | std::string str = DebuggerController::GetStopReasonString(reason); |
| 955 | return BNDebuggerAllocString(str.c_str()); |
| 956 | } |
| 957 | |
| 958 | |
| 959 | DEBUGGER_FFI_API DebugStopReason BNDebuggerGetStopReason(BNDebuggerController* controller) |
no test coverage detected