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

Diff for /mandoc/Attic/apropos.c between version 1.26 and 1.27

version 1.26, 2012/03/23 02:52:33 version 1.27, 2012/03/24 00:31:55
Line 18 
Line 18 
 #ifdef HAVE_CONFIG_H  #ifdef HAVE_CONFIG_H
 #include "config.h"  #include "config.h"
 #endif  #endif
   #include <sys/param.h>
   
 #include <assert.h>  #include <assert.h>
 #include <getopt.h>  #include <getopt.h>
Line 39  int
Line 40  int
 main(int argc, char *argv[])  main(int argc, char *argv[])
 {  {
         int              ch, rc, whatis;          int              ch, rc, whatis;
           struct res      *res;
         struct manpaths  paths;          struct manpaths  paths;
         size_t           terms;          size_t           terms, ressz;
         struct opts      opts;          struct opts      opts;
         struct expr     *e;          struct expr     *e;
         char            *defpaths, *auxpaths;          char            *defpaths, *auxpaths;
Line 59  main(int argc, char *argv[])
Line 61  main(int argc, char *argv[])
         memset(&paths, 0, sizeof(struct manpaths));          memset(&paths, 0, sizeof(struct manpaths));
         memset(&opts, 0, sizeof(struct opts));          memset(&opts, 0, sizeof(struct opts));
   
           ressz = 0;
           res = NULL;
         auxpaths = defpaths = NULL;          auxpaths = defpaths = NULL;
         conf_file = NULL;          conf_file = NULL;
         e = NULL;          e = NULL;
Line 104  main(int argc, char *argv[])
Line 108  main(int argc, char *argv[])
         }          }
   
         rc = apropos_search          rc = apropos_search
                 (paths.sz, paths.paths,                  (paths.sz, paths.paths, &opts,
                  &opts, e, terms, NULL, list);                   e, terms, NULL, &ressz, &res, list);
   
         if (0 == rc)          if (0 == rc) {
                 fprintf(stderr, "%s: Error reading "                  fprintf(stderr, "%s: Bad database\n", progname);
                                 "manual database\n", progname);                  goto out;
           }
 out:  out:
         manpath_free(&paths);          manpath_free(&paths);
           resfree(res, ressz);
         exprfree(e);          exprfree(e);
   
         return(rc ? EXIT_SUCCESS : EXIT_FAILURE);          return(rc ? EXIT_SUCCESS : EXIT_FAILURE);
 }  }
   
Line 126  list(struct res *res, size_t sz, void *arg)
Line 130  list(struct res *res, size_t sz, void *arg)
   
         qsort(res, sz, sizeof(struct res), cmp);          qsort(res, sz, sizeof(struct res), cmp);
   
         for (i = 0; i < sz; i++)          for (i = 0; i < sz; i++) {
                   if ( ! res[i].matched)
                           continue;
                 printf("%s(%s%s%s) - %.70s\n",                  printf("%s(%s%s%s) - %.70s\n",
                                 res[i].title,                                  res[i].title,
                                 res[i].cat,                                  res[i].cat,
                                 *res[i].arch ? "/" : "",                                  *res[i].arch ? "/" : "",
                                 *res[i].arch ? res[i].arch : "",                                  *res[i].arch ? res[i].arch : "",
                                 res[i].desc);                                  res[i].desc);
           }
 }  }
   
 static int  static int

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27

CVSweb