| 2727 | } |
| 2728 | |
| 2729 | staticfn boolean |
| 2730 | is_fld_arrayvalues( |
| 2731 | const char *str, |
| 2732 | const char *const *arr, |
| 2733 | int arrmin, int arrmax, |
| 2734 | int *retidx) |
| 2735 | { |
| 2736 | int i; |
| 2737 | |
| 2738 | for (i = arrmin; i < arrmax; i++) |
| 2739 | if (!strcmpi(str, arr[i])) { |
| 2740 | *retidx = i; |
| 2741 | return TRUE; |
| 2742 | } |
| 2743 | return FALSE; |
| 2744 | } |
| 2745 | |
| 2746 | staticfn int |
| 2747 | query_arrayvalue( |