diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-11-22 11:01:09 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-11-22 11:28:23 +0100 |
commit | eafaffa0f09b7c22eed906ef5356b1460d44da55 (patch) | |
tree | e77a1c3ddf714301b93810c2d123b6a7fcdc2ee8 /lib/util/getsubopt.c | |
parent | 435c9ef3de5797d7c49fa8fae12a02fd6bd209d6 (diff) |
Cleanup: move all the compatibillity fluff to a dedicated "libcompat"
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/util/getsubopt.c')
-rw-r--r-- | lib/util/getsubopt.c | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/lib/util/getsubopt.c b/lib/util/getsubopt.c deleted file mode 100644 index 5cf19d1..0000000 --- a/lib/util/getsubopt.c +++ /dev/null @@ -1,45 +0,0 @@ -/* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* - * getsubopt.c - * - * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> - */ -#include "config.h" -#include "util/compat.h" - -#include <stdlib.h> -#include <string.h> - -#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 |