| 2773 | |
| 2774 | |
| 2775 | string Function::GetGotoLabelName(uint64_t labelId) |
| 2776 | { |
| 2777 | char* name = BNGetGotoLabelName(m_object, labelId); |
| 2778 | string result = name; |
| 2779 | BNFreeString(name); |
| 2780 | return result; |
| 2781 | } |
| 2782 | |
| 2783 | |
| 2784 | void Function::SetGotoLabelName(uint64_t labelId, const std::string& name) |
no outgoing calls
no test coverage detected