[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.6 and 1.11

version 1.6, 2011/11/20 15:43:14 version 1.11, 2011/12/16 12:06:35
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 {
           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.) */
         char            *arch; /* arch (or empty string) */          char            *arch; /* arch (or empty string) */
         char            *desc; /* description (from Nd) */          char            *desc; /* description (from Nd) */
         unsigned int     rec; /* record in index */          unsigned int     rec; /* record in index */
           /*
            * The index volume.  This indexes into the array of directories
            * searched for manual page databases.
            */
           unsigned int     volume;
 };  };
   
 struct  opts {  struct  opts {
Line 35  __BEGIN_DECLS
Line 47  __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 *,
                         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 *);
   struct  expr    *termcomp(int, char *[], size_t *);
   
 __END_DECLS  __END_DECLS
   

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.11

CVSweb