I originally wrote this so I could cheat at those word scramble puzzles
you find in the newspaper. It is based on the public domain PERMUTE2.C
by Jon Guthrie from SNIPPETS.

The maximum number or permutations is the factorial of the length of
the input string or:
(where len is the length of the text string)
	for(i=1, max=1; i<=len; i++)
		max*=i;

An alternate wordlist should be a newline separated list of words.
Good candidates include:
	- web2, web2a and propernames from the GNU miscfiles package.
	- the wordlist from any game that uses one (hangman for example)
	- any wordlist used for password cracking
	- I'd like to use the hash file from Ispell (it would be faster)
	but I'm too lazy to fold in the appropriate code from it.

Feel free to send me any comments, modifications, bug reports, etc.

If you like this program I would appreciate a donation through PayPal.
You can do this by following the link below:

https://www.paypal.com/xclick/business=eddie%40sjfn.nb.ca&item_number=wscr00&no_shipping=1&return=http%3A//hood.sjfn.nb.ca/%7Eeddie/thanks.cgi%3Furi%3Dwscr.html%26name%3DWSCR&cancel_return=http%3A//hood.sjfn.nb.ca/%7Eeddie/wscr.html

Eddie Buckley <eddie@sjfn.nb.ca>

