"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Glenn L McGrath | b963875 | 2002-12-02 00:01:36 +0000 | [diff] [blame] | 2 | /* |
Bernhard Reutner-Fischer | 421d9e5 | 2006-04-03 16:39:31 +0000 | [diff] [blame] | 3 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Glenn L McGrath | b963875 | 2002-12-02 00:01:36 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
Bernhard Reutner-Fischer | 421d9e5 | 2006-04-03 16:39:31 +0000 | [diff] [blame] | 6 | #include "libbb.h" |
Glenn L McGrath | b963875 | 2002-12-02 00:01:36 +0000 | [diff] [blame] | 7 | |
Denis Vlasenko | 5af906e | 2006-11-05 18:05:09 +0000 | [diff] [blame] | 8 | /* returns the array index of the string */ |
| 9 | /* (index of first match is returned, or -1) */ |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 10 | int index_in_str_array(const char *const string_array[], const char *key) |
Glenn L McGrath | b963875 | 2002-12-02 00:01:36 +0000 | [diff] [blame] | 11 | { |
"Vladimir N. Oleynik" | cc34344 | 2005-11-26 10:45:26 +0000 | [diff] [blame] | 12 | int i; |
Glenn L McGrath | b963875 | 2002-12-02 00:01:36 +0000 | [diff] [blame] | 13 | |
| 14 | for (i = 0; string_array[i] != 0; i++) { |
| 15 | if (strcmp(string_array[i], key) == 0) { |
"Vladimir N. Oleynik" | cc34344 | 2005-11-26 10:45:26 +0000 | [diff] [blame] | 16 | return i; |
Glenn L McGrath | b963875 | 2002-12-02 00:01:36 +0000 | [diff] [blame] | 17 | } |
| 18 | } |
Denis Vlasenko | 5af906e | 2006-11-05 18:05:09 +0000 | [diff] [blame] | 19 | return -1; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 20 | } |
| 21 | |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 22 | int index_in_strings(const char *strings, const char *key) |
| 23 | { |
| 24 | int idx = 0; |
| 25 | |
| 26 | while (strings[0]) { |
| 27 | if (strcmp(strings, key) == 0) { |
| 28 | return idx; |
| 29 | } |
| 30 | strings += strlen(strings) + 1; /* skip NUL */ |
| 31 | idx++; |
| 32 | } |
| 33 | return -1; |
| 34 | } |
| 35 | |
Denis Vlasenko | 5af906e | 2006-11-05 18:05:09 +0000 | [diff] [blame] | 36 | /* returns the array index of the string, even if it matches only a beginning */ |
| 37 | /* (index of first match is returned, or -1) */ |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 38 | #ifdef UNUSED |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 39 | int index_in_substr_array(const char *const string_array[], const char *key) |
Denis Vlasenko | 5af906e | 2006-11-05 18:05:09 +0000 | [diff] [blame] | 40 | { |
| 41 | int i; |
| 42 | int len = strlen(key); |
Bernhard Reutner-Fischer | eceecea | 2007-03-30 14:43:27 +0000 | [diff] [blame] | 43 | if (len) { |
| 44 | for (i = 0; string_array[i] != 0; i++) { |
| 45 | if (strncmp(string_array[i], key, len) == 0) { |
| 46 | return i; |
| 47 | } |
Denis Vlasenko | 5af906e | 2006-11-05 18:05:09 +0000 | [diff] [blame] | 48 | } |
| 49 | } |
| 50 | return -1; |
| 51 | } |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 52 | #endif |
| 53 | |
| 54 | int index_in_substrings(const char *strings, const char *key) |
| 55 | { |
| 56 | int len = strlen(key); |
| 57 | |
| 58 | if (len) { |
| 59 | int idx = 0; |
| 60 | while (strings[0]) { |
| 61 | if (strncmp(strings, key, len) == 0) { |
| 62 | return idx; |
| 63 | } |
| 64 | strings += strlen(strings) + 1; /* skip NUL */ |
| 65 | idx++; |
| 66 | } |
| 67 | } |
| 68 | return -1; |
| 69 | } |
Denis Vlasenko | bfc3d82 | 2007-11-04 04:10:17 +0000 | [diff] [blame] | 70 | |
| 71 | const char *nth_string(const char *strings, int n) |
| 72 | { |
Denis Vlasenko | 6b40443 | 2008-01-07 16:13:14 +0000 | [diff] [blame^] | 73 | while (n) { |
| 74 | n--; |
| 75 | strings += strlen(strings) + 1; |
| 76 | } |
| 77 | return strings; |
Denis Vlasenko | bfc3d82 | 2007-11-04 04:10:17 +0000 | [diff] [blame] | 78 | } |