MCPcopy Create free account
hub / github.com/capstone-engine/capstone / cs_version

Function cs_version

cs.c:367–375  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

365
366CAPSTONE_EXPORT
367unsigned 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
377CAPSTONE_EXPORT
378bool CAPSTONE_API cs_support(int query)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…