diff options
author | Denis Vlasenko | 2008-06-27 02:52:20 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-06-27 02:52:20 +0000 |
commit | defc1ea34074e7882724c460260d307cdf981a70 (patch) | |
tree | fca9b9a5fe243f9c0c76b84824ea2ff92ea8e589 /libbb/compare_string_array.c | |
parent | 26bc57d8b26425f23f4be974cce7bf35c95c9a1a (diff) | |
download | busybox-defc1ea34074e7882724c460260d307cdf981a70.zip busybox-defc1ea34074e7882724c460260d307cdf981a70.tar.gz |
*: introduce and use FAST_FUNC: regparm on i386, otherwise no-on
text data bss dec hex filename
808035 611 6868 815514 c719a busybox_old
804472 611 6868 811951 c63af busybox_unstripped
Diffstat (limited to 'libbb/compare_string_array.c')
-rw-r--r-- | libbb/compare_string_array.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libbb/compare_string_array.c b/libbb/compare_string_array.c index ec7f94e..43c59e8 100644 --- a/libbb/compare_string_array.c +++ b/libbb/compare_string_array.c @@ -7,7 +7,7 @@ /* returns the array index of the string */ /* (index of first match is returned, or -1) */ -int index_in_str_array(const char *const string_array[], const char *key) +int FAST_FUNC index_in_str_array(const char *const string_array[], const char *key) { int i; @@ -19,7 +19,7 @@ int index_in_str_array(const char *const string_array[], const char *key) return -1; } -int index_in_strings(const char *strings, const char *key) +int FAST_FUNC index_in_strings(const char *strings, const char *key) { int idx = 0; @@ -36,7 +36,7 @@ int index_in_strings(const char *strings, const char *key) /* returns the array index of the string, even if it matches only a beginning */ /* (index of first match is returned, or -1) */ #ifdef UNUSED -int index_in_substr_array(const char *const string_array[], const char *key) +int FAST_FUNC index_in_substr_array(const char *const string_array[], const char *key) { int i; int len = strlen(key); @@ -51,7 +51,7 @@ int index_in_substr_array(const char *const string_array[], const char *key) } #endif -int index_in_substrings(const char *strings, const char *key) +int FAST_FUNC index_in_substrings(const char *strings, const char *key) { int len = strlen(key); @@ -68,7 +68,7 @@ int index_in_substrings(const char *strings, const char *key) return -1; } -const char *nth_string(const char *strings, int n) +const char* FAST_FUNC nth_string(const char *strings, int n) { while (n) { n--; |