var fDesc=new Array(); fDesc[0] = "Enchant appears to be a generic spell checking library. You can request dictionaries from it, ask if a word is correctly spelled, get corrections for a misspelled word, etc.
Enchant does not use pipes to talk with command line programs. Enchant is a full-fledged library, with a C and C API. Its communication with its various backends happens via "virtual function calls", or at least the C equivalent thereof. The backends are small C/C plugins."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }