()
| 525 | |
| 526 | # return the core's version |
| 527 | def 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 |
no test coverage detected
searching dependent graphs…