home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / TEXT / UTILITY / SSPELL11.ZIP / ROOT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-26  |  313 b   |  19 lines

  1. /* root.h */
  2.  
  3. typedef struct wordlststruct
  4. {
  5.    char *word;
  6.    char *prefix;
  7.    char *suffix;
  8.    struct wordlststruct *next;
  9.    } WORDLST;
  10.  
  11. /* void root(char *in, WORDLST **outlst) */
  12. void root();
  13.  
  14. /* void destroy(WORDLST *a) */
  15. void destroy();
  16.  
  17. /* void initroot(char *file) */
  18. void initroot();
  19.