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

Diff for /mandoc/Attic/apropos.c between version 1.32 and 1.37

version 1.32, 2012/06/09 14:11:15 version 1.37, 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 21 
Line 22 
   
 #include <assert.h>  #include <assert.h>
 #include <getopt.h>  #include <getopt.h>
   #include <stdint.h>
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
Line 36  main(int argc, char *argv[])
Line 38  main(int argc, char *argv[])
         struct mansearch search;          struct mansearch search;
         size_t           i, sz;          size_t           i, sz;
         struct manpage  *res;          struct manpage  *res;
         char            *conf_file, *defpaths, *auxpaths;  
         struct manpaths  paths;          struct manpaths  paths;
           char            *defpaths, *auxpaths;
           char            *conf_file;
         char            *progname;          char            *progname;
           const char      *outkey;
         extern char     *optarg;          extern char     *optarg;
         extern int       optind;          extern int       optind;
   
Line 48  main(int argc, char *argv[])
Line 52  main(int argc, char *argv[])
         else          else
                 ++progname;                  ++progname;
   
         auxpaths = defpaths = conf_file = NULL;          whatis = (0 == strncmp(progname, "whatis", 6));
   
         memset(&paths, 0, sizeof(struct manpaths));          memset(&paths, 0, sizeof(struct manpaths));
         memset(&search, 0, sizeof(struct mansearch));          memset(&search, 0, sizeof(struct mansearch));
         whatis = (0 == strcmp(progname, "whatis"));  
   
         while (-1 != (ch = getopt(argc, argv, "C:M:m:S:s:")))          auxpaths = defpaths = NULL;
           conf_file = NULL;
           outkey = "Nd";
   
           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 64  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 84  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].file, res[i].desc);                  printf("%s - %s\n", res[i].names,
                 free(res[i].desc);                      NULL == res[i].output ? "" : res[i].output);
                   free(res[i].file);
                   free(res[i].names);
                   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 conf] "          fprintf(stderr, "usage: %s [-C file] [-M path] [-m path] "
                                   "[-M paths] "                          "[-O outkey] "
                                   "[-m paths] "                          "[-S arch] [-s section]%s ...\n", progname,
                                   "[-S arch] "                          whatis ? " name" : "\n               expression");
                                   "[-s section] "  
                                   "expr ...\n",  
                                   progname);  
         return(EXIT_FAILURE);          return(EXIT_FAILURE);
 }  }

Legend:
Removed from v.1.32  
changed lines
  Added in v.1.37

CVSweb