rabbitizer/include/instructions/RabbitizerInstrCategory.h

25 lines
436 B
C
Raw Normal View History

2023-05-02 20:41:02 +00:00
/* SPDX-FileCopyrightText: © 2022-2023 Decompollaborate */
2022-10-14 21:49:59 +00:00
/* SPDX-License-Identifier: MIT */
#ifndef RABBITIZER_INSTRCATEGORY_H
#define RABBITIZER_INSTRCATEGORY_H
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include "generated/InstrCategory_enum.h"
2022-10-14 21:49:59 +00:00
extern const char *const RabbitizerInstrCategory_Names[];
RabbitizerInstrCategory RabbitizerInstrCategory_fromStr(const char *name);
#ifdef __cplusplus
}
#endif
#endif