| 413 | |
| 414 | CAPSTONE_EXPORT |
| 415 | cs_err CAPSTONE_API cs_errno(csh handle) |
| 416 | { |
| 417 | struct cs_struct *ud; |
| 418 | if (!handle) |
| 419 | return CS_ERR_CSH; |
| 420 | |
| 421 | ud = (struct cs_struct *)(uintptr_t)handle; |
| 422 | |
| 423 | return ud->errnum; |
| 424 | } |
| 425 | |
| 426 | CAPSTONE_EXPORT |
| 427 | const char * CAPSTONE_API cs_strerror(cs_err code) |
no outgoing calls
no test coverage detected
searching dependent graphs…