Searched refs:suggs (Results 1 – 2 of 2) sorted by relevance
/PHP-8.3/ext/enchant/tests/ |
H A D | dict_quick_check.phpt | 25 enchant_dict_quick_check($d, 'soong', $suggs); 27 echo "Elements: " . count($suggs) . "\n";
|
/PHP-8.3/ext/enchant/ |
H A D | enchant.c | 615 char **suggs; in PHP_FUNCTION() local 621 suggs = enchant_dict_suggest(pdict->pdict, word, wordlen, &n_sugg); in PHP_FUNCTION() 622 if (suggs && n_sugg) { in PHP_FUNCTION() 625 add_next_index_string(sugg, suggs[i]); in PHP_FUNCTION() 627 enchant_dict_free_string_list(pdict->pdict, suggs); in PHP_FUNCTION() 661 char **suggs; in PHP_FUNCTION() local 672 suggs = enchant_dict_suggest(pdict->pdict, word, wordlen, &n_sugg); in PHP_FUNCTION() 673 if (suggs && n_sugg) { in PHP_FUNCTION() 677 add_next_index_string(return_value, suggs[i]); in PHP_FUNCTION() 680 enchant_dict_free_string_list(pdict->pdict, suggs); in PHP_FUNCTION()
|
Completed in 11 milliseconds