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

Diff for /mandoc/mansearch.h between version 1.5 and 1.8

version 1.5, 2013/12/27 18:51:25 version 1.8, 2014/01/06 03:02:46
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2012 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2012 Kristaps Dzonsons <kristaps@bsd.lv>
    * Copyright (c) 2013 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 57 
Line 58 
 #define TYPE_Va          0x0000000800000000ULL  #define TYPE_Va          0x0000000800000000ULL
 #define TYPE_Vt          0x0000001000000000ULL  #define TYPE_Vt          0x0000001000000000ULL
 #define TYPE_Xr          0x0000002000000000ULL  #define TYPE_Xr          0x0000002000000000ULL
   #define TYPE_sec         0x0000004000000000ULL
   #define TYPE_arch        0x0000008000000000ULL
   
 __BEGIN_DECLS  __BEGIN_DECLS
   
 struct  manpage {  struct  manpage {
         char            *file; /* to be prefixed by manpath */          char            *file; /* to be prefixed by manpath */
         char            *names; /* a list of names with sections */          char            *names; /* a list of names with sections */
         char            *desc; /* description of manpage */          char            *output; /* user-defined additional output */
         int              form; /* 0 == catpage */          int              form; /* 0 == catpage */
 };  };
   
Line 79  int mansearch(const struct mansearch *cfg, /* options 
Line 82  int mansearch(const struct mansearch *cfg, /* options 
                 const struct manpaths *paths, /* manpaths */                  const struct manpaths *paths, /* manpaths */
                 int argc, /* size of argv */                  int argc, /* size of argv */
                 char *argv[],  /* search terms */                  char *argv[],  /* search terms */
                   const char *outkey, /* name of additional output key */
                 struct manpage **res, /* results */                  struct manpage **res, /* results */
                 size_t *ressz); /* results returned */                  size_t *ressz); /* results returned */
   

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.8

CVSweb