- Given the puzzle and the words, this program will highlight the answers in red.
- Unfortionatly this only supports the ASCII charset, anyone willing to add support for unicode is welcome to do so. :)
- The obvious next step is to make a word-find generator which I can pipe the output to.
- perhaps in the distant future I will add a GUI-frontend for this program using QT/GTK. but for now it's CLI.
- maybe OCR for image input (https://github.com/tesseract-ocr/tesseract)
Pretty basic build and run. If someone who knows how to do makefiles would help, that would be great.
$ git clone https://github.com/dvtate/wordfinder/
$ cd wordfinder
$ gcc *.c --std=c99 -Wall -Wextra -o findwords # build
$ ./findwords # run
---- note: windows ----
> gcc *.c --std=c99 -Wall -Wextra -o findwords.exe # build
> findwords.exe # run