From eafaffa0f09b7c22eed906ef5356b1460d44da55 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Fri, 22 Nov 2019 11:01:09 +0100 Subject: Cleanup: move all the compatibillity fluff to a dedicated "libcompat" Signed-off-by: David Oberhollenzer --- lib/compat/getsubopt.c | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 lib/compat/getsubopt.c (limited to 'lib/compat/getsubopt.c') diff --git a/lib/compat/getsubopt.c b/lib/compat/getsubopt.c new file mode 100644 index 0000000..d53a37d --- /dev/null +++ b/lib/compat/getsubopt.c @@ -0,0 +1,45 @@ +/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * getsubopt.c + * + * Copyright (C) 2019 David Oberhollenzer + */ +#include "config.h" +#include "compat.h" + +#include +#include + +#ifndef HAVE_GETSUBOPT +int getsubopt(char **opt, char *const *keys, char **val) +{ + char *str = *opt; + size_t i, len; + + *val = NULL; + *opt = strchr(str, ','); + + if (*opt == NULL) { + *opt = str + strlen(str); + } else { + *(*opt)++ = '\0'; + } + + for (i = 0; keys[i]; ++i) { + len = strlen(keys[i]); + + if (strncmp(keys[i], str, len) != 0) + continue; + + if (str[len] != '=' && str[len] != '\0') + continue; + + if (str[len] == '=') + *val = str + len + 1; + + return i; + } + + return -1; +} +#endif -- cgit v1.2.3