mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2024-12-26 18:14:51 +00:00
25 lines
436 B
C
25 lines
436 B
C
/* SPDX-FileCopyrightText: © 2022-2024 Decompollaborate */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef RABBITIZER_INSTRCATEGORY_H
|
|
#define RABBITIZER_INSTRCATEGORY_H
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
#include "generated/InstrCategory_enum.h"
|
|
|
|
extern const char *const RabbitizerInstrCategory_Names[];
|
|
|
|
RabbitizerInstrCategory RabbitizerInstrCategory_fromStr(const char *name);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|