The Speller project is a simple spell-checker that checks the spelling of words in a given text. It utilizes a dictionary to verify the correctness of words and can be integrated into various applications requiring text input validation.
To compile the project, use the following command:
make
To run the spell-checker, execute:
./speller dict/dict [textfile]
Replace [textfile]
with the path to the text file you want to check.
Make sure to have the necessary dependencies installed, such as gcc
for compilation.