mirror of
https://github.com/Obfuscator-Collections/VMProtect.git
synced 2024-12-27 08:49:27 +03:00
15 lines
212 B
C
15 lines
212 B
C
|
#ifndef UD_MNEM_H
|
||
|
#define UD_MNEM_H
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
extern const char* ud_lookup_mnemonic(enum ud_mnemonic_code c);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
#endif /* UD_MNEM_H */
|