blob: 151b50817eefecd6deae78e7b25638cecb23365a [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrathb9638752002-12-02 00:01:36 +00002/*
Bernhard Reutner-Fischer421d9e52006-04-03 16:39:31 +00003 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Glenn L McGrathb9638752002-12-02 00:01:36 +00004 */
5
Bernhard Reutner-Fischer421d9e52006-04-03 16:39:31 +00006#include "libbb.h"
Glenn L McGrathb9638752002-12-02 00:01:36 +00007
Denis Vlasenko5af906e2006-11-05 18:05:09 +00008/* returns the array index of the string */
9/* (index of first match is returned, or -1) */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000010int index_in_str_array(const char *const string_array[], const char *key)
Glenn L McGrathb9638752002-12-02 00:01:36 +000011{
"Vladimir N. Oleynik"cc343442005-11-26 10:45:26 +000012 int i;
Glenn L McGrathb9638752002-12-02 00:01:36 +000013
14 for (i = 0; string_array[i] != 0; i++) {
15 if (strcmp(string_array[i], key) == 0) {
"Vladimir N. Oleynik"cc343442005-11-26 10:45:26 +000016 return i;
Glenn L McGrathb9638752002-12-02 00:01:36 +000017 }
18 }
Denis Vlasenko5af906e2006-11-05 18:05:09 +000019 return -1;
Manuel Novoa III cad53642003-03-19 09:13:01 +000020}
21
Denis Vlasenko990d0f62007-07-24 15:54:42 +000022int 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 Vlasenko5af906e2006-11-05 18:05:09 +000036/* returns the array index of the string, even if it matches only a beginning */
37/* (index of first match is returned, or -1) */
Denis Vlasenko990d0f62007-07-24 15:54:42 +000038#ifdef UNUSED
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000039int index_in_substr_array(const char *const string_array[], const char *key)
Denis Vlasenko5af906e2006-11-05 18:05:09 +000040{
41 int i;
42 int len = strlen(key);
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +000043 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 Vlasenko5af906e2006-11-05 18:05:09 +000048 }
49 }
50 return -1;
51}
Denis Vlasenko990d0f62007-07-24 15:54:42 +000052#endif
53
54int 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 Vlasenkobfc3d822007-11-04 04:10:17 +000070
71const char *nth_string(const char *strings, int n)
72{
Denis Vlasenko6b404432008-01-07 16:13:14 +000073 while (n) {
74 n--;
75 strings += strlen(strings) + 1;
76 }
77 return strings;
Denis Vlasenkobfc3d822007-11-04 04:10:17 +000078}