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

Function cs_version

bindings/python/capstone/__init__.py:527–531  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

525
526# return the core's version
527def cs_version():
528 major = ctypes.c_int()
529 minor = ctypes.c_int()
530 combined = _cs.cs_version(ctypes.byref(major), ctypes.byref(minor))
531 return (major.value, minor.value, combined)
532
533
534# return the binding's version

Callers 6

cs_disasm_quickFunction · 0.70
cs_disasm_liteFunction · 0.70
__init__Method · 0.70
debugFunction · 0.70
bs_versionFunction · 0.50
ocaml_versionFunction · 0.50

Calls 1

cs_versionMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…