#ifndef SPELL_H
#define SPELL_H

#import <stdio.h>

extern char **SPbestmatch(char *s, char *table[], int tabsize, int (*metric)());
extern char **SPspellFile(char *word, FILE *f, int ignoreCase);
extern char **SPSpellFile(char *s, char *filename, int ignoreCase);
extern char *SPbestpath( char *path );
extern int SPwagfisch(register char *s, register char *t);
extern int SPmorgan(register char *s, register char *t);

extern int SPinitial;
extern int SPmaxdistance;

#define MAXTAB 64

#endif
