diff options
Diffstat (limited to 'lib/compat/getsubopt.c')
-rw-r--r-- | lib/compat/getsubopt.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/lib/compat/getsubopt.c b/lib/compat/getsubopt.c deleted file mode 100644 index e6fea1a..0000000 --- a/lib/compat/getsubopt.c +++ /dev/null @@ -1,27 +0,0 @@ -#include "compat.h" - -#include <stdlib.h> -#include <string.h> - -#ifndef HAVE_GETSUBOPT -int getsubopt(char **opt, char *const *keys, char **val) -{ - char *s = *opt; - int i; - - *val = NULL; - *opt = strchr(s, ','); - if (*opt) *(*opt)++ = 0; - else *opt = s + strlen(s); - - for (i=0; keys[i]; i++) { - size_t l = strlen(keys[i]); - if (strncmp(keys[i], s, l)) continue; - if (s[l] == '=') - *val = s + l + 1; - else if (s[l]) continue; - return i; - } - return -1; -} -#endif |