mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2024-12-29 09:22:02 +00:00
33 lines
554 B
C
33 lines
554 B
C
/* SPDX-FileCopyrightText: © 2022 Decompollaborate */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef RABBITIZER_INSTRID_H
|
|
#define RABBITIZER_INSTRID_H
|
|
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "common/Utils.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "InstrId_enum.table.h"
|
|
|
|
extern const char *RabbitizerInstrId_Names[];
|
|
|
|
|
|
CONST NODISCARD
|
|
bool RabbitizerInstrId_isValid(RabbitizerInstrId uniqueId);
|
|
|
|
CONST NODISCARD RETURNS_NON_NULL
|
|
const char *RabbitizerInstrId_getOpcodeName(RabbitizerInstrId uniqueId);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|