Searched refs:suggs (Results 1 – 2 of 2) sorted by relevance
/PHP-8.0/ext/enchant/tests/ |
H A D | dict_quick_check.phpt | 24 enchant_dict_quick_check($d, 'soong', $suggs); 26 echo "Elements: " . count($suggs) . "\n";
|
/PHP-8.0/ext/enchant/ |
H A D | enchant.c | 625 char **suggs; in PHP_FUNCTION() local 631 suggs = enchant_dict_suggest(pdict->pdict, word, wordlen, &n_sugg); in PHP_FUNCTION() 632 if (suggs && n_sugg) { in PHP_FUNCTION() 635 add_next_index_string(sugg, suggs[i]); in PHP_FUNCTION() 637 enchant_dict_free_string_list(pdict->pdict, suggs); in PHP_FUNCTION() 671 char **suggs; in PHP_FUNCTION() local 682 suggs = enchant_dict_suggest(pdict->pdict, word, wordlen, &n_sugg); in PHP_FUNCTION() 683 if (suggs && n_sugg) { in PHP_FUNCTION() 687 add_next_index_string(return_value, suggs[i]); in PHP_FUNCTION() 690 enchant_dict_free_string_list(pdict->pdict, suggs); in PHP_FUNCTION()
|
Completed in 8 milliseconds