acc/include/target.h
szdytom 121c37c16a main function(AST)
Signed-off-by: szdytom <szdytom@163.com>
2023-06-12 16:02:43 +08:00

12 lines
135 B
C

#ifndef ACC_TARGET_H
#define ACC_TARGET_H
// Target types
enum {
TARGET_AST
};
int target_parse(const char *target_string);
#endif