Create README.md

This commit is contained in:
fooflington 2018-08-18 16:09:53 +01:00 committed by GitHub
parent 531489c2d0
commit 7978a3800b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

36
README.md Normal file
View File

@ -0,0 +1,36 @@
Wordsearch generator
====================
This is a Wordsearch generator written in C largely as an exercise in remembering how to use C having originally implemented it in Java (see https://github.com/fooflington/wordsearch-c).
Compiling
---------
Generally you'll probably want the *Release* version which has Optimisation enabled:
```bash
cd Release && make
```
This will drop a `wordsearch` executable
Running
-------
```
Usage: wordsearch <height> <width> [ words ... ]
```
For example:
```
$ ./wordsearch 15 15 gaping panicky lock purple geese massive judge hateful
```
For an existing list of words, the following form can be useful:
```
$ cat file.txt | xargs ./wordsearch 15 15
```
There are some example wordlists included in `tests`.