index.h
上传用户:qin5330
上传日期:2007-01-05
资源大小:114k
文件大小:2k
源码类别:

搜索引擎

开发平台:

Perl

  1. /*
  2. ** Copyright (C) 1995, 1996, 1997, 1998 Hewlett-Packard Company
  3. ** Originally by Kevin Hughes, kev@kevcom.com, 3/11/94
  4. **
  5. ** This program and library is free software; you can redistribute it and/or
  6. ** modify it under the terms of the GNU (Library) General Public License
  7. ** as published by the Free Software Foundation; either version 2
  8. ** of the License, or 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 (Library) General Public License for more details.
  14. **
  15. ** You should have received a copy of the GNU (Library) General Public License
  16. ** along with this program; if not, write to the Free Software
  17. ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  18. */
  19. /*
  20. ** use _AP() for easier cross-compiler (non-ANSI) porting 
  21. ** <return value> <functionname> _AP( (<arg prototypes>) );
  22. */
  23. int getMeta _AP ((char *tag, int* docPropName));
  24. int parseMetaData _AP ((char *, int, int, struct file*));
  25. void printMetaNames _AP ((FILE *));
  26. struct sortentry *addsortentry _AP ((struct sortentry *, char*, char*));
  27. struct entry *addentry _AP ((struct entry *, char*, int, int, int, int));
  28. struct file *addtofilelist _AP ((struct file *filep, char *filename, 
  29. char *title, int size, 
  30. struct file ** newFileEntry));
  31. int getfilecount _AP ((struct file *));
  32. char *getthedate _AP ((void));
  33. int countwords _AP ((void *vp, char *filename, char *title, int indextitleonly));
  34. int countwordstr _AP ((char *s, int filenum, int emphasized));
  35. int getstructure _AP ((char *, int));
  36. int parsecomment _AP ((char *, int, int, int));
  37. int removestops _AP ((struct entry *, int, int, int));
  38. int getrank _AP ((int, int, int, int));
  39. void printheader _AP ((FILE *, char *, int, int, int));
  40. void printindex _AP ((struct entry *, FILE *));
  41. void printfilelist _AP ((struct file *, FILE *));
  42. void printstopwords _AP ((FILE *));
  43. void printfileoffsets _AP ((FILE *));
  44. void compress _AP ((int, FILE *));
  45. void decompress _AP ((FILE *));
  46. char *ruleparse _AP ((char *));
  47. int notEscaped _AP (( char *tag, int j));
  48. void stripIgnoreFirstChars _AP ((char *));
  49. void stripIgnoreLastChars _AP ((char *word));
  50. int isIgnoreFirstChar _AP ((char));
  51. int isIgnoreLastChar _AP ((char));
  52. void writeFileEntry _AP ((struct file *, FILE *));
  53. void readFileEntry _AP ((FILE *, char *, struct docPropertyEntry **));