home *** CD-ROM | disk | FTP | other *** search
/ Internet Publisher's Toolbox 2.0 / Internet Publisher's Toolbox.iso / internet / ntserver / wtsource / boolean_.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-14  |  766 b   |  31 lines

  1. #ifndef BOOLEAN_OP_H
  2. #define BOOLEAN_OP_H
  3. /* 
  4.  * boolean_op.h -- 
  5.  * SCCS Status     : %W%    %G%
  6.  * Author          : Huynh Quoc T. Tung
  7.  * Created On      : Sun Oct 17 16:40:58 1993
  8.  * Last Modified By: Ulrich Pfeifer
  9.  * Last Modified On: Mon Oct 18 12:06:21 1993
  10.  * Update Count    : 2
  11.  * Status          : Unknown, Use with caution!
  12.  */
  13.  
  14. typedef struct doc_descr_struct {
  15.   long doc_id;
  16.   double score;
  17. } doc_descr_struct;
  18.  
  19. typedef struct search_result_struct {
  20.   long word_id;
  21.   long number_of_hits;
  22.   doc_descr_struct *doc_ids_array;
  23. } search_result_struct;
  24.  
  25.  
  26. void save_word_id _AP((long word_id));
  27. boolean IsOperator _AP((char* op));
  28. long retriev_result _AP((long entries));
  29. boolean boolean_operations _AP((char* operator));
  30. #endif
  31.