| 852 | } |
| 853 | |
| 854 | static void lang_list_remove(hb_value_array_t *list, const char *lang) |
| 855 | { |
| 856 | int count = hb_value_array_len(list); |
| 857 | int ii; |
| 858 | for (ii = count - 1; ii >= 0; ii--) |
| 859 | { |
| 860 | const char *tmp = hb_value_get_string(hb_value_array_get(list, ii)); |
| 861 | if (!strncmp(lang, tmp, 4)) |
| 862 | hb_value_array_remove(list, ii); |
| 863 | } |
| 864 | } |
| 865 | |
| 866 | static void show_progress_json(hb_state_t * state) |
| 867 | { |
no test coverage detected