2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2002-12-02 05:31:36 +05:30
|
|
|
/*
|
2006-04-03 22:09:31 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2002-12-02 05:31:36 +05:30
|
|
|
*/
|
|
|
|
|
2006-04-03 22:09:31 +05:30
|
|
|
#include "libbb.h"
|
2002-12-02 05:31:36 +05:30
|
|
|
|
2006-11-05 23:35:09 +05:30
|
|
|
/* returns the array index of the string */
|
|
|
|
/* (index of first match is returned, or -1) */
|
2008-06-27 08:22:20 +05:30
|
|
|
int FAST_FUNC index_in_str_array(const char *const string_array[], const char *key)
|
2002-12-02 05:31:36 +05:30
|
|
|
{
|
2005-11-26 16:15:26 +05:30
|
|
|
int i;
|
2002-12-02 05:31:36 +05:30
|
|
|
|
|
|
|
for (i = 0; string_array[i] != 0; i++) {
|
|
|
|
if (strcmp(string_array[i], key) == 0) {
|
2005-11-26 16:15:26 +05:30
|
|
|
return i;
|
2002-12-02 05:31:36 +05:30
|
|
|
}
|
|
|
|
}
|
2006-11-05 23:35:09 +05:30
|
|
|
return -1;
|
2003-03-19 14:43:01 +05:30
|
|
|
}
|
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
int FAST_FUNC index_in_strings(const char *strings, const char *key)
|
2007-07-24 21:24:42 +05:30
|
|
|
{
|
|
|
|
int idx = 0;
|
|
|
|
|
2008-05-31 13:04:14 +05:30
|
|
|
while (*strings) {
|
2007-07-24 21:24:42 +05:30
|
|
|
if (strcmp(strings, key) == 0) {
|
|
|
|
return idx;
|
|
|
|
}
|
|
|
|
strings += strlen(strings) + 1; /* skip NUL */
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-11-05 23:35:09 +05:30
|
|
|
/* returns the array index of the string, even if it matches only a beginning */
|
|
|
|
/* (index of first match is returned, or -1) */
|
2007-07-24 21:24:42 +05:30
|
|
|
#ifdef UNUSED
|
2008-06-27 08:22:20 +05:30
|
|
|
int FAST_FUNC index_in_substr_array(const char *const string_array[], const char *key)
|
2006-11-05 23:35:09 +05:30
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int len = strlen(key);
|
2007-03-30 20:13:27 +05:30
|
|
|
if (len) {
|
|
|
|
for (i = 0; string_array[i] != 0; i++) {
|
|
|
|
if (strncmp(string_array[i], key, len) == 0) {
|
|
|
|
return i;
|
|
|
|
}
|
2006-11-05 23:35:09 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
2007-07-24 21:24:42 +05:30
|
|
|
#endif
|
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
int FAST_FUNC index_in_substrings(const char *strings, const char *key)
|
2007-07-24 21:24:42 +05:30
|
|
|
{
|
|
|
|
int len = strlen(key);
|
|
|
|
|
|
|
|
if (len) {
|
|
|
|
int idx = 0;
|
2008-05-31 13:04:14 +05:30
|
|
|
while (*strings) {
|
2007-07-24 21:24:42 +05:30
|
|
|
if (strncmp(strings, key, len) == 0) {
|
|
|
|
return idx;
|
|
|
|
}
|
|
|
|
strings += strlen(strings) + 1; /* skip NUL */
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
2007-11-04 09:40:17 +05:30
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
const char* FAST_FUNC nth_string(const char *strings, int n)
|
2007-11-04 09:40:17 +05:30
|
|
|
{
|
2008-01-07 21:43:14 +05:30
|
|
|
while (n) {
|
|
|
|
n--;
|
|
|
|
strings += strlen(strings) + 1;
|
|
|
|
}
|
|
|
|
return strings;
|
2007-11-04 09:40:17 +05:30
|
|
|
}
|