/* wscr  Copyright(c) 1998
 * by Eddie Buckley <eddie@sjfn.nb.ca>
 *
 * Permission to use, copy, modify, distribute, and sell this software and its
 * documentation for any purpose is hereby granted without fee, provided that
 * the above copyright notice appear in all copies and that both that
 * copyright notice and this permission notice appear in supporting
 * documentation.  No representations are made about the suitability of this
 * software for any purpose.  It is provided "as is" without express or 
 * implied warranty.
 */

/* Flags */
#define DICT	1

/* Global variablrs */
int	flags = 0;
char	*progname;
char	*wordlistfile;

/* default location of dict file */
char	*defaultfile = "/usr/dict/words";

/* Index for dict file */
long	wordindex[26];

/* Version */
char	*ver = "1.1";

/* Functions */
int     charcmp(char *ch1, char *ch2);
int     charcasecmp(char *ch1, char *ch2);
void    permute(char *text, int start, int len);
void	sortlist(char *text);
void	help(void);



