keystone-engine 0.1.0

Rust bindings for the Keystone Engine assembler library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#ifndef KEYSTONE_WRAPPER_H
#define KEYSTONE_WRAPPER_H

#include <keystone/keystone.h>

/*
 * Wrap Keystone's ks_close function and ignore the returned error code.
 */
void ks_close_wrapper(ks_engine *ks);

#endif