From fab9866a37788f11e2482ea0d6e7ef165d827d49 Mon Sep 17 00:00:00 2001 From: midipix Date: Sun, 20 Mar 2016 07:15:27 -0400 Subject: utility: output: added a generic slbt_output_exec() interface. --- src/output/slbt_output_compile.c | 27 --------------------------- src/output/slbt_output_exec.c | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 27 deletions(-) delete mode 100644 src/output/slbt_output_compile.c create mode 100644 src/output/slbt_output_exec.c (limited to 'src') diff --git a/src/output/slbt_output_compile.c b/src/output/slbt_output_compile.c deleted file mode 100644 index c86148a..0000000 --- a/src/output/slbt_output_compile.c +++ /dev/null @@ -1,27 +0,0 @@ -/*******************************************************************/ -/* slibtool: a skinny libtool implementation, written in C */ -/* Copyright (C) 2016 Z. Gilboa */ -/* Released under the Standard MIT License; see COPYING.SLIBTOOL. */ -/*******************************************************************/ - -#include -#include - -int slbt_output_compile( - const struct slbt_driver_ctx * dctx, - const struct slbt_exec_ctx * ectx) -{ - char ** parg; - - if (fprintf(stdout,"%s: compile:",dctx->program) < 0) - return -1; - - for (parg=ectx->argv; *parg; parg++) - if (fprintf(stdout," %s",*parg) < 0) - return -1; - - if (fputc('\n',stdout) < 0) - return -1; - - return 0; -} diff --git a/src/output/slbt_output_exec.c b/src/output/slbt_output_exec.c new file mode 100644 index 0000000..62b15cc --- /dev/null +++ b/src/output/slbt_output_exec.c @@ -0,0 +1,35 @@ +/*******************************************************************/ +/* slibtool: a skinny libtool implementation, written in C */ +/* Copyright (C) 2016 Z. Gilboa */ +/* Released under the Standard MIT License; see COPYING.SLIBTOOL. */ +/*******************************************************************/ + +#include +#include + +int slbt_output_exec( + const struct slbt_driver_ctx * dctx, + const struct slbt_exec_ctx * ectx, + const char * step) +{ + char ** parg; + + if (fprintf(stdout,"%s: %s:",dctx->program,step) < 0) + return -1; + + for (parg=ectx->argv; *parg; parg++) + if (fprintf(stdout," %s",*parg) < 0) + return -1; + + if (fputc('\n',stdout) < 0) + return -1; + + return 0; +} + +int slbt_output_compile( + const struct slbt_driver_ctx * dctx, + const struct slbt_exec_ctx * ectx) +{ + return slbt_output_exec(dctx,ectx,"compile"); +} -- cgit v1.2.3