Listing 2: Wörter aus einer Vorschlagliste auswählen. const AspellWordList *wl = aspell_speller_suggest(speller,wort,-1); if(wl) { AspellspringEnumeration *els = aspell_word_list_elements(wl); const char *word; while ((word = aspell_string_enumeration_next(els))) { IDOS->Printf("%s\n",word); } delete_aspell_string_enumeration(els); }