capstone 0.7.0

High level bindings to capstone disassembly engine (https://capstone-engine.org/)
Documentation
1
2
3
4
5
6
#include <stdio.h>
int main(void) {
    int c = 42;
    c = c * c + 42;
    printf("Having done stuff, c is now %d\n", c);
}