summaryrefslogtreecommitdiff
path: root/src/driver/slbt_driver_ctx.c
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2024-03-23 03:27:01 +0000
committermidipix <writeonce@midipix.org>2024-03-23 03:27:01 +0000
commitbbc13d492947ef58bf7901e42e1fbed0a5ac1eda (patch)
tree11d48ed45073e86f4ccf70e911f417f894d73151 /src/driver/slbt_driver_ctx.c
parent41a8685b3f7beff9f2b7c5a2f7cf38fe7d5b0db2 (diff)
downloadslibtool-bbc13d492947ef58bf7901e42e1fbed0a5ac1eda.tar.bz2
slibtool-bbc13d492947ef58bf7901e42e1fbed0a5ac1eda.tar.xz
internals: added slbt_txtline_to_string_vector() by reusing existing code.
Diffstat (limited to 'src/driver/slbt_driver_ctx.c')
-rw-r--r--src/driver/slbt_driver_ctx.c54
1 files changed, 2 insertions, 52 deletions
diff --git a/src/driver/slbt_driver_ctx.c b/src/driver/slbt_driver_ctx.c
index 0e17a31..956c435 100644
--- a/src/driver/slbt_driver_ctx.c
+++ b/src/driver/slbt_driver_ctx.c
@@ -22,6 +22,7 @@
#include "slibtool_objlist_impl.h"
#include "slibtool_errinfo_impl.h"
#include "slibtool_lconf_impl.h"
+#include "slibtool_txtline_impl.h"
#include "slibtool_ar_impl.h"
#include "argv/argv.h"
@@ -381,58 +382,7 @@ static int slbt_driver_fail_incompatible_args(
static int slbt_driver_parse_tool_argv(const char * tool, char *** tool_argv)
{
- int argc;
- char ** argv;
- const char * ch;
- const char * mark;
-
- if (!(ch = tool))
- return 0;
-
- argc = 1;
-
- for (; *ch == ' '; )
- ch++;
-
- for (; *ch; ) {
- if (*ch++ == ' ') {
- argc++;
-
- for (; (*ch == ' '); )
- ch++;
- }
- }
-
- if (argc == 1)
- return 0;
-
- if (!(*tool_argv = calloc(++argc,sizeof(char *))))
- return -1;
-
- for (ch=tool; (*ch == ' '); ch++)
- (void)0;
-
- argv = *tool_argv;
- mark = ch;
-
- for (; *ch; ) {
- if (*ch == ' ') {
- if (!(*argv++ = strndup(mark,ch-mark)))
- return -1;
-
- for (; (*ch == ' '); )
- ch++;
-
- mark = ch;
- } else {
- ch++;
- }
- }
-
- if (!(*argv++ = strndup(mark,ch-mark)))
- return -1;
-
- return 0;
+ return slbt_txtline_to_string_vector(tool,tool_argv);
}