| 365 | |
| 366 | CAPSTONE_EXPORT |
| 367 | unsigned int CAPSTONE_API cs_version(int *major, int *minor) |
| 368 | { |
| 369 | if (major != NULL && minor != NULL) { |
| 370 | *major = CS_API_MAJOR; |
| 371 | *minor = CS_API_MINOR; |
| 372 | } |
| 373 | |
| 374 | return (CS_API_MAJOR << 8) + CS_API_MINOR; |
| 375 | } |
| 376 | |
| 377 | CAPSTONE_EXPORT |
| 378 | bool CAPSTONE_API cs_support(int query) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…