12 lines
135 B
C
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
|