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

Diff for /mandoc/Attic/apropos.c between version 1.18 and 1.20

version 1.18, 2011/11/23 09:50:40 version 1.20, 2011/11/27 18:54:01
Line 20 
Line 20 
 #endif  #endif
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  
 #include <getopt.h>  #include <getopt.h>
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
Line 39  static char *progname;
Line 38  static char *progname;
 int  int
 main(int argc, char *argv[])  main(int argc, char *argv[])
 {  {
         int              ch, rc;          int              ch, rc, whatis;
         struct manpaths  paths;          struct manpaths  paths;
         size_t           terms;          size_t           terms;
         struct opts      opts;          struct opts      opts;
Line 54  main(int argc, char *argv[])
Line 53  main(int argc, char *argv[])
         else          else
                 ++progname;                  ++progname;
   
           whatis = 0 == strcmp(progname, "whatis");
   
         memset(&paths, 0, sizeof(struct manpaths));          memset(&paths, 0, sizeof(struct manpaths));
         memset(&opts, 0, sizeof(struct opts));          memset(&opts, 0, sizeof(struct opts));
   
         auxpaths = defpaths = NULL;          auxpaths = defpaths = NULL;
         e = NULL;          e = NULL;
         rc = 0;  
   
         while (-1 != (ch = getopt(argc, argv, "M:m:S:s:")))          while (-1 != (ch = getopt(argc, argv, "M:m:S:s:")))
                 switch (ch) {                  switch (ch) {
                 case ('M'):                  case ('M'):
                         defpaths = optarg;                          defpaths = optarg;
Line 77  main(int argc, char *argv[])
Line 77  main(int argc, char *argv[])
                         break;                          break;
                 default:                  default:
                         usage();                          usage();
                         goto out;                          return(EXIT_FAILURE);
                 }                  }
   
         argc -= optind;          argc -= optind;
         argv += optind;          argv += optind;
   
         if (0 == argc) {          if (0 == argc)
                 rc = 1;                  return(EXIT_SUCCESS);
                 goto out;  
         }  
   
           rc = 0;
   
         manpath_parse(&paths, defpaths, auxpaths);          manpath_parse(&paths, defpaths, auxpaths);
   
         if (NULL == (e = exprcomp(argc, argv, &terms))) {          e = whatis ? termcomp(argc, argv, &terms) :
                        exprcomp(argc, argv, &terms);
   
           if (NULL == e) {
                 fprintf(stderr, "%s: Bad expression\n", progname);                  fprintf(stderr, "%s: Bad expression\n", progname);
                 goto out;                  goto out;
         }          }
   
         rc = apropos_search          rc = apropos_search
                 (paths.sz, paths.paths,                  (paths.sz, paths.paths,
                  &opts, e, terms, NULL, list);                   &opts, e, terms, NULL, list);
   
         if (0 == rc)          if (0 == rc)
                 fprintf(stderr, "%s: Error reading "                  fprintf(stderr, "%s: Error reading "
                                 "manual database\n", progname);                                  "manual database\n", progname);
   
Line 119  list(struct res *res, size_t sz, void *arg)
Line 122  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 < (int)sz; i++)          for (i = 0; i < (int)sz; i++)
                 printf("%s(%s%s%s) - %s\n", res[i].title,                  printf("%s(%s%s%s) - %s\n", 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);
Line 139  usage(void)
Line 142  usage(void)
 {  {
   
         fprintf(stderr, "usage: %s "          fprintf(stderr, "usage: %s "
                         "[-M dirs] "                          "[-M path] "
                         "[-m dirs] "                          "[-m path] "
                         "[-S arch] "                          "[-S arch] "
                         "[-s section] "                          "[-s section] "
                         "expression...\n", progname);                          "expression...\n",
                           progname);
 }  }

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.20

CVSweb