diff options
Diffstat (limited to 'src/blogc-make/exec-native.h')
-rw-r--r-- | src/blogc-make/exec-native.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/blogc-make/exec-native.h b/src/blogc-make/exec-native.h new file mode 100644 index 0000000..a83b510 --- /dev/null +++ b/src/blogc-make/exec-native.h @@ -0,0 +1,18 @@ +/* + * blogc: A blog compiler. + * Copyright (C) 2016 Rafael G. Martins <rafael@rafaelmartins.eng.br> + * + * This program can be distributed under the terms of the BSD License. + * See the file LICENSE. + */ + +#ifndef _MAKE_EXEC_NATIVE_H +#define _MAKE_EXEC_NATIVE_H + +#include <stdbool.h> +#include "ctx.h" + +int bm_exec_native_cp(bm_filectx_t *source, bm_filectx_t *dest, bool verbose); +int bm_exec_native_rm(bm_filectx_t *dest, bool verbose); + +#endif /* _MAKE_EXEC_NATIVE_H */ |