14 lines
164 B
C
14 lines
164 B
C
#ifndef ACC_TARGET_H
|
|
#define ACC_TARGET_H
|
|
|
|
// Target types
|
|
enum {
|
|
TARGET_AST,
|
|
TARGET_ACIR,
|
|
TARGET_NULL,
|
|
};
|
|
|
|
int target_parse(const char *target_string);
|
|
|
|
#endif
|