aboutsummaryrefslogtreecommitdiff
path: root/libbb/compare_string_array.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/compare_string_array.c')
-rw-r--r--libbb/compare_string_array.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libbb/compare_string_array.c b/libbb/compare_string_array.c
index ec7f94e79..43c59e8e0 100644
--- a/libbb/compare_string_array.c
+++ b/libbb/compare_string_array.c
@@ -7,7 +7,7 @@
7 7
8/* returns the array index of the string */ 8/* returns the array index of the string */
9/* (index of first match is returned, or -1) */ 9/* (index of first match is returned, or -1) */
10int index_in_str_array(const char *const string_array[], const char *key) 10int FAST_FUNC index_in_str_array(const char *const string_array[], const char *key)
11{ 11{
12 int i; 12 int i;
13 13
@@ -19,7 +19,7 @@ int index_in_str_array(const char *const string_array[], const char *key)
19 return -1; 19 return -1;
20} 20}
21 21
22int index_in_strings(const char *strings, const char *key) 22int FAST_FUNC index_in_strings(const char *strings, const char *key)
23{ 23{
24 int idx = 0; 24 int idx = 0;
25 25
@@ -36,7 +36,7 @@ int index_in_strings(const char *strings, const char *key)
36/* returns the array index of the string, even if it matches only a beginning */ 36/* returns the array index of the string, even if it matches only a beginning */
37/* (index of first match is returned, or -1) */ 37/* (index of first match is returned, or -1) */
38#ifdef UNUSED 38#ifdef UNUSED
39int index_in_substr_array(const char *const string_array[], const char *key) 39int FAST_FUNC index_in_substr_array(const char *const string_array[], const char *key)
40{ 40{
41 int i; 41 int i;
42 int len = strlen(key); 42 int len = strlen(key);
@@ -51,7 +51,7 @@ int index_in_substr_array(const char *const string_array[], const char *key)
51} 51}
52#endif 52#endif
53 53
54int index_in_substrings(const char *strings, const char *key) 54int FAST_FUNC index_in_substrings(const char *strings, const char *key)
55{ 55{
56 int len = strlen(key); 56 int len = strlen(key);
57 57
@@ -68,7 +68,7 @@ int index_in_substrings(const char *strings, const char *key)
68 return -1; 68 return -1;
69} 69}
70 70
71const char *nth_string(const char *strings, int n) 71const char* FAST_FUNC nth_string(const char *strings, int n)
72{ 72{
73 while (n) { 73 while (n) {
74 n--; 74 n--;