diff options
author | Marvin Borner | 2024-01-17 00:59:12 +0100 |
---|---|---|
committer | Marvin Borner | 2024-01-17 01:10:36 +0100 |
commit | b754e71ca502a5027ea3479eb3ea1a0ac28e5282 (patch) | |
tree | a7d4d9e45f289c6ba08abe56931f8b2f6dea39af /inc/target.h |
Initial commit
Diffstat (limited to 'inc/target.h')
-rw-r--r-- | inc/target.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/inc/target.h b/inc/target.h new file mode 100644 index 0000000..9196637 --- /dev/null +++ b/inc/target.h @@ -0,0 +1,18 @@ +// Copyright (c) 2024, Marvin Borner <dev@marvinborner.de> +// SPDX-License-Identifier: MIT + +#ifndef BLOCADE_TARGET_H +#define BLOCADE_TARGET_H + +#include <stdio.h> + +#include <parse.h> + +struct target_spec { + const char *name; + void (*exec)(struct bloc_parsed *bloc, FILE *file); +}; + +void exec_target(char *name, struct bloc_parsed *bloc, FILE *file); + +#endif |