// Copyright (c) 2024, Marvin Borner // SPDX-License-Identifier: MIT #include #include #include extern struct target_spec target_unblc; extern struct target_spec target_unbblc; static struct target_spec *targets[] = { &target_unblc, &target_unbblc, }; void exec_target(char *name, struct bloc_parsed *bloc, FILE *file) { int count = sizeof(targets) / sizeof(struct target_spec *); for (int i = 0; i < count; i++) { if (!strcmp(targets[i]->name, name)) { targets[i]->exec(bloc, file); return; } } printf("available targets:\n"); for (int i = 0; i < count; i++) printf(" %s\n", targets[i]->name); fatal("unknown target %s\n", name); }