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

Diff for /mandoc/Attic/apropos.c between version 1.35 and 1.36

version 1.35, 2013/12/27 18:51:25 version 1.36, 2013/12/31 03:41:14
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 41  main(int argc, char *argv[])
Line 42  main(int argc, char *argv[])
         char            *defpaths, *auxpaths;          char            *defpaths, *auxpaths;
         char            *conf_file;          char            *conf_file;
         char            *progname;          char            *progname;
           char            *outkey;
         extern char     *optarg;          extern char     *optarg;
         extern int       optind;          extern int       optind;
   
Line 57  main(int argc, char *argv[])
Line 59  main(int argc, char *argv[])
   
         auxpaths = defpaths = NULL;          auxpaths = defpaths = NULL;
         conf_file = NULL;          conf_file = NULL;
           outkey = NULL;
   
         while (-1 != (ch = getopt(argc, argv, "C:M:m:S:s:")))          while (-1 != (ch = getopt(argc, argv, "C:M:m:O:S:s:")))
                 switch (ch) {                  switch (ch) {
                 case ('C'):                  case ('C'):
                         conf_file = optarg;                          conf_file = optarg;
Line 69  main(int argc, char *argv[])
Line 72  main(int argc, char *argv[])
                 case ('m'):                  case ('m'):
                         auxpaths = optarg;                          auxpaths = optarg;
                         break;                          break;
                   case ('O'):
                           outkey = optarg;
                           break;
                 case ('S'):                  case ('S'):
                         search.arch = optarg;                          search.arch = optarg;
                         break;                          break;
Line 89  main(int argc, char *argv[])
Line 95  main(int argc, char *argv[])
         search.flags = whatis ? MANSEARCH_WHATIS : 0;          search.flags = whatis ? MANSEARCH_WHATIS : 0;
   
         manpath_parse(&paths, conf_file, defpaths, auxpaths);          manpath_parse(&paths, conf_file, defpaths, auxpaths);
         ch = mansearch(&search, &paths, argc, argv, &res, &sz);          ch = mansearch(&search, &paths, argc, argv, outkey, &res, &sz);
         manpath_free(&paths);          manpath_free(&paths);
   
         if (0 == ch)          if (0 == ch)
                 goto usage;                  goto usage;
   
         for (i = 0; i < sz; i++) {          for (i = 0; i < sz; i++) {
                 printf("%s - %s\n", res[i].names, res[i].desc);                  printf("%s - %s\n", res[i].names,
                       NULL == outkey ? res[i].desc :
                       NULL == res[i].output ? "" : res[i].output);
                 free(res[i].file);                  free(res[i].file);
                 free(res[i].names);                  free(res[i].names);
                 free(res[i].desc);                  free(res[i].desc);
                   free(res[i].output);
         }          }
   
         free(res);          free(res);
         return(sz ? EXIT_SUCCESS : EXIT_FAILURE);          return(sz ? EXIT_SUCCESS : EXIT_FAILURE);
 usage:  usage:
         fprintf(stderr, "usage: %s [-C file] [-M path] [-m path] "          fprintf(stderr, "usage: %s [-C file] [-M path] [-m path] "
                           "[-O outkey] "
                         "[-S arch] [-s section]%s ...\n", progname,                          "[-S arch] [-s section]%s ...\n", progname,
                         whatis ? " name" : "\n               expression");                          whatis ? " name" : "\n               expression");
         return(EXIT_FAILURE);          return(EXIT_FAILURE);

Legend:
Removed from v.1.35  
changed lines
  Added in v.1.36

CVSweb