[BACK]Return to apropos_db.h CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/Attic/apropos_db.h between version 1.10 and 1.12

version 1.10, 2011/11/27 23:11:37 version 1.12, 2012/03/24 00:31:55
Line 17 
Line 17 
 #ifndef APROPOS_H  #ifndef APROPOS_H
 #define APROPOS_H  #define APROPOS_H
   
   enum    restype {
           RESTYPE_MAN, /* man(7) file */
           RESTYPE_MDOC, /* mdoc(7) file */
           RESTYPE_CAT /* pre-formatted file */
   };
   
 struct  res {  struct  res {
         char            *type; /* file type: mdoc, man or cat */          enum restype     type; /* input file type */
         char            *file; /* file in file-system */          char            *file; /* file in file-system */
         char            *cat; /* category (3p, 3, etc.) */          char            *cat; /* category (3p, 3, etc.) */
         char            *title; /* title (FOO, etc.) */          char            *title; /* title (FOO, etc.) */
Line 30  struct res {
Line 36  struct res {
          * searched for manual page databases.           * searched for manual page databases.
          */           */
         unsigned int     volume;          unsigned int     volume;
           /*
            * The following fields are used internally.
            *
            * Maintain a binary tree for checking the uniqueness of `rec'
            * when adding elements to the results array.
            * Since the results array is dynamic, use offset in the array
            * instead of a pointer to the structure.
            */
           int              lhs;
           int              rhs;
           int              matched; /* expression is true */
           int             *matches; /* partial truth evaluations */
 };  };
   
 struct  opts {  struct  opts {
Line 41  __BEGIN_DECLS
Line 59  __BEGIN_DECLS
   
 struct  expr;  struct  expr;
   
 int              apropos_search(int, char **, const struct opts *,  int              apropos_search(int, char **, const struct opts *,
                         const struct expr *, size_t, void *,                          const struct expr *, size_t,
                           void *, size_t *, struct res **,
                         void (*)(struct res *, size_t, void *));                          void (*)(struct res *, size_t, void *));
 struct  expr    *exprcomp(int, char *[], size_t *);  struct  expr    *exprcomp(int, char *[], size_t *);
 void             exprfree(struct expr *);  void             exprfree(struct expr *);
   void             resfree(struct res *, size_t);
 struct  expr    *termcomp(int, char *[], size_t *);  struct  expr    *termcomp(int, char *[], size_t *);
   
 __END_DECLS  __END_DECLS

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.12

CVSweb