home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / gnu / ispell-4.0-src.lha / src / amiga / ispell-4.0 / build.h < prev    next >
C/C++ Source or Header  |  1993-05-31  |  1KB  |  47 lines

  1. /* Copyright (C) 1990, 1993 Free Software Foundation, Inc.
  2.  
  3.    This file is part of GNU ISPELL.
  4.  
  5.    This program is free software; you can redistribute it and/or modify
  6.    it under the terms of the GNU General Public License as published by
  7.    the Free Software Foundation; either version 2, or (at your option)
  8.    any later version.
  9.  
  10.    This program is distributed in the hope that it will be useful,
  11.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.    GNU General Public License for more details.
  14.  
  15.    You should have received a copy of the GNU General Public License
  16.    along with this program; if not, write to the Free Software
  17.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  18.  
  19. #ifdef __STDC__
  20. void alloc_tables (unsigned long, unsigned long);
  21. void store_flags (hash_index, unsigned short);
  22. #else
  23. void alloc_tables ();
  24. void store_flags ();
  25. #endif
  26.  
  27.  
  28. #ifdef __STDC__
  29.  
  30. void write_binary (char *);
  31. void write_ascii (char *);
  32. void build (FILE *);
  33. void toomanywords (void);
  34. hash_index find_slot (hash_index);
  35. struct hash_table_entry *make_hash_table_entry (comp_char *, int);
  36.  
  37. #else
  38.  
  39. void write_binary ();
  40. void write_ascii ();
  41. void build ();
  42. void toomanywords ();
  43. hash_index find_slot ();
  44. struct hash_table_entry *make_hash_table_entry ();
  45.  
  46. #endif
  47.