tools/llvm: Do not build with symbols
[minix3.git] / external / bsd / flex / dist / scanopt.c
blobcad3a9685466fb019d1c60123cdd6a5a60346430
1 /* $NetBSD: scanopt.c,v 1.4 2013/10/20 03:13:44 christos Exp $ */
3 /* flex - tool to generate fast lexical analyzers */
5 /* Copyright (c) 1990 The Regents of the University of California. */
6 /* All rights reserved. */
8 /* This code is derived from software contributed to Berkeley by */
9 /* Vern Paxson. */
11 /* The United States Government has rights in this work pursuant */
12 /* to contract no. DE-AC03-76SF00098 between the United States */
13 /* Department of Energy and the University of California. */
15 /* This file is part of flex. */
17 /* Redistribution and use in source and binary forms, with or without */
18 /* modification, are permitted provided that the following conditions */
19 /* are met: */
21 /* 1. Redistributions of source code must retain the above copyright */
22 /* notice, this list of conditions and the following disclaimer. */
23 /* 2. Redistributions in binary form must reproduce the above copyright */
24 /* notice, this list of conditions and the following disclaimer in the */
25 /* documentation and/or other materials provided with the distribution. */
27 /* Neither the name of the University nor the names of its contributors */
28 /* may be used to endorse or promote products derived from this software */
29 /* without specific prior written permission. */
31 /* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR */
32 /* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED */
33 /* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR */
34 /* PURPOSE. */
36 #include "flexdef.h"
37 #include "scanopt.h"
40 /* Internal structures */
42 #ifdef HAVE_STRCASECMP
43 #define STRCASECMP(a,b) strcasecmp(a,b)
44 #else
45 static int STRCASECMP PROTO ((const char *, const char *));
47 static int STRCASECMP (a, b)
48 const char *a;
49 const char *b;
51 while (tolower ((unsigned char)*a++) == tolower ((unsigned char)*b++)) ;
52 return b - a;
54 #endif
56 #define ARG_NONE 0x01
57 #define ARG_REQ 0x02
58 #define ARG_OPT 0x04
59 #define IS_LONG 0x08
61 struct _aux {
62 int flags; /* The above hex flags. */
63 int namelen; /* Length of the actual option word, e.g., "--file[=foo]" is 4 */
64 int printlen; /* Length of entire string, e.g., "--file[=foo]" is 12 */
68 struct _scanopt_t {
69 const optspec_t *options; /* List of options. */
70 struct _aux *aux; /* Auxiliary data about options. */
71 int optc; /* Number of options. */
72 int argc; /* Number of args. */
73 char **argv; /* Array of strings. */
74 int index; /* Used as: argv[index][subscript]. */
75 int subscript;
76 char no_err_msg; /* If true, do not print errors. */
77 char has_long;
78 char has_short;
81 /* Accessor functions. These WOULD be one-liners, but portability calls. */
82 static const char *NAME PROTO ((struct _scanopt_t *, int));
83 static int PRINTLEN PROTO ((struct _scanopt_t *, int));
84 static int RVAL PROTO ((struct _scanopt_t *, int));
85 static int FLAGS PROTO ((struct _scanopt_t *, int));
86 static const char *DESC PROTO ((struct _scanopt_t *, int));
87 static int scanopt_err PROTO ((struct _scanopt_t *, int, int, int));
88 static int matchlongopt PROTO ((char *, char **, int *, char **, int *));
89 static int find_opt
90 PROTO ((struct _scanopt_t *, int, char *, int, int *, int *opt_offset));
92 static const char *NAME (s, i)
93 struct _scanopt_t *s;
94 int i;
96 return s->options[i].opt_fmt +
97 ((s->aux[i].flags & IS_LONG) ? 2 : 1);
100 static int PRINTLEN (s, i)
101 struct _scanopt_t *s;
102 int i;
104 return s->aux[i].printlen;
107 static int RVAL (s, i)
108 struct _scanopt_t *s;
109 int i;
111 return s->options[i].r_val;
114 static int FLAGS (s, i)
115 struct _scanopt_t *s;
116 int i;
118 return s->aux[i].flags;
121 static const char *DESC (s, i)
122 struct _scanopt_t *s;
123 int i;
125 return s->options[i].desc ? s->options[i].desc : "";
128 #ifndef NO_SCANOPT_USAGE
129 static int get_cols PROTO ((void));
131 static int get_cols ()
133 char *env;
134 int cols = 80; /* default */
136 #ifdef HAVE_NCURSES_H
137 initscr ();
138 endwin ();
139 if (COLS > 0)
140 return COLS;
141 #endif
143 if ((env = getenv ("COLUMNS")) != NULL)
144 cols = atoi (env);
146 return cols;
148 #endif
150 /* Macro to check for NULL before assigning a value. */
151 #define SAFE_ASSIGN(ptr,val) \
152 do{ \
153 if((ptr)!=NULL) \
154 *(ptr) = val; \
155 }while(0)
157 /* Macro to assure we reset subscript whenever we adjust s->index.*/
158 #define INC_INDEX(s,n) \
159 do{ \
160 (s)->index += (n); \
161 (s)->subscript= 0; \
162 }while(0)
164 scanopt_t *scanopt_init (options, argc, argv, flags)
165 const optspec_t *options;
166 int argc;
167 char **argv;
168 int flags;
170 int i;
171 struct _scanopt_t *s;
172 s = (struct _scanopt_t *) malloc (sizeof (struct _scanopt_t));
174 s->options = options;
175 s->optc = 0;
176 s->argc = argc;
177 s->argv = (char **) argv;
178 s->index = 1;
179 s->subscript = 0;
180 s->no_err_msg = (flags & SCANOPT_NO_ERR_MSG);
181 s->has_long = 0;
182 s->has_short = 0;
184 /* Determine option count. (Find entry with all zeros). */
185 s->optc = 0;
186 while (options[s->optc].opt_fmt
187 || options[s->optc].r_val || options[s->optc].desc)
188 s->optc++;
190 /* Build auxiliary data */
191 s->aux = (struct _aux *) malloc (s->optc * sizeof (struct _aux));
193 for (i = 0; i < s->optc; i++) {
194 const Char *p, *pname;
195 const struct optspec_t *opt;
196 struct _aux *aux;
198 opt = s->options + i;
199 aux = s->aux + i;
201 aux->flags = ARG_NONE;
203 if (opt->opt_fmt[0] == '-' && opt->opt_fmt[1] == '-') {
204 aux->flags |= IS_LONG;
205 pname = (const Char *)(opt->opt_fmt + 2);
206 s->has_long = 1;
208 else {
209 pname = (const Char *)(opt->opt_fmt + 1);
210 s->has_short = 1;
212 aux->printlen = strlen (opt->opt_fmt);
214 aux->namelen = 0;
215 for (p = pname + 1; *p; p++) {
216 /* detect required arg */
217 if (*p == '=' || isspace ((unsigned char)*p)
218 || !(aux->flags & IS_LONG)) {
219 if (aux->namelen == 0)
220 aux->namelen = p - pname;
221 aux->flags |= ARG_REQ;
222 aux->flags &= ~ARG_NONE;
224 /* detect optional arg. This overrides required arg. */
225 if (*p == '[') {
226 if (aux->namelen == 0)
227 aux->namelen = p - pname;
228 aux->flags &= ~(ARG_REQ | ARG_NONE);
229 aux->flags |= ARG_OPT;
230 break;
233 if (aux->namelen == 0)
234 aux->namelen = p - pname;
236 return (scanopt_t *) s;
239 #ifndef NO_SCANOPT_USAGE
240 /* these structs are for scanopt_usage(). */
241 struct usg_elem {
242 int idx;
243 struct usg_elem *next;
244 struct usg_elem *alias;
246 typedef struct usg_elem usg_elem;
249 /* Prints a usage message based on contents of optlist.
250 * Parameters:
251 * scanner - The scanner, already initialized with scanopt_init().
252 * fp - The file stream to write to.
253 * usage - Text to be prepended to option list.
254 * Return: Always returns 0 (zero).
255 * The output looks something like this:
257 [indent][option, alias1, alias2...][indent][description line1
258 description line2...]
260 int scanopt_usage (scanner, fp, usage)
261 scanopt_t *scanner;
262 FILE *fp;
263 const char *usage;
265 struct _scanopt_t *s;
266 int i, columns, indent = 2;
267 usg_elem *byr_val = NULL; /* option indices sorted by r_val */
268 usg_elem *store; /* array of preallocated elements. */
269 int store_idx = 0;
270 usg_elem *ue;
271 int maxlen[2];
272 int desccol = 0;
273 int print_run = 0;
275 maxlen[0] = 0;
276 maxlen[1] = 0;
278 s = (struct _scanopt_t *) scanner;
280 if (usage) {
281 fprintf (fp, "%s\n", usage);
283 else {
284 /* Find the basename of argv[0] */
285 const char *p;
287 p = s->argv[0] + strlen (s->argv[0]);
288 while (p != s->argv[0] && *p != '/')
289 --p;
290 if (*p == '/')
291 p++;
293 fprintf (fp, _("Usage: %s [OPTIONS]...\n"), p);
295 fprintf (fp, "\n");
297 /* Sort by r_val and string. Yes, this is O(n*n), but n is small. */
298 store = (usg_elem *) malloc (s->optc * sizeof (usg_elem));
299 for (i = 0; i < s->optc; i++) {
301 /* grab the next preallocate node. */
302 ue = store + store_idx++;
303 ue->idx = i;
304 ue->next = ue->alias = NULL;
306 /* insert into list. */
307 if (!byr_val)
308 byr_val = ue;
309 else {
310 int found_alias = 0;
311 usg_elem **ue_curr, **ptr_if_no_alias = NULL;
313 ue_curr = &byr_val;
314 while (*ue_curr) {
315 if (RVAL (s, (*ue_curr)->idx) ==
316 RVAL (s, ue->idx)) {
317 /* push onto the alias list. */
318 ue_curr = &((*ue_curr)->alias);
319 found_alias = 1;
320 break;
322 if (!ptr_if_no_alias
324 STRCASECMP (NAME (s, (*ue_curr)->idx),
325 NAME (s, ue->idx)) > 0) {
326 ptr_if_no_alias = ue_curr;
328 ue_curr = &((*ue_curr)->next);
330 if (!found_alias && ptr_if_no_alias)
331 ue_curr = ptr_if_no_alias;
332 ue->next = *ue_curr;
333 *ue_curr = ue;
337 #if 0
338 if (1) {
339 printf ("ORIGINAL:\n");
340 for (i = 0; i < s->optc; i++)
341 printf ("%2d: %s\n", i, NAME (s, i));
342 printf ("SORTED:\n");
343 ue = byr_val;
344 while (ue) {
345 usg_elem *ue2;
347 printf ("%2d: %s\n", ue->idx, NAME (s, ue->idx));
348 for (ue2 = ue->alias; ue2; ue2 = ue2->next)
349 printf (" +---> %2d: %s\n", ue2->idx,
350 NAME (s, ue2->idx));
351 ue = ue->next;
354 #endif
356 /* Now build each row of output. */
358 /* first pass calculate how much room we need. */
359 for (ue = byr_val; ue; ue = ue->next) {
360 usg_elem *ap;
361 int len = 0;
362 int nshort = 0, nlong = 0;
365 #define CALC_LEN(i) do {\
366 if(FLAGS(s,i) & IS_LONG) \
367 len += (nlong++||nshort) ? 2+PRINTLEN(s,i) : PRINTLEN(s,i);\
368 else\
369 len += (nshort++||nlong)? 2+PRINTLEN(s,i) : PRINTLEN(s,i);\
370 }while(0)
372 if (!(FLAGS (s, ue->idx) & IS_LONG))
373 CALC_LEN (ue->idx);
375 /* do short aliases first. */
376 for (ap = ue->alias; ap; ap = ap->next) {
377 if (FLAGS (s, ap->idx) & IS_LONG)
378 continue;
379 CALC_LEN (ap->idx);
382 if (FLAGS (s, ue->idx) & IS_LONG)
383 CALC_LEN (ue->idx);
385 /* repeat the above loop, this time for long aliases. */
386 for (ap = ue->alias; ap; ap = ap->next) {
387 if (!(FLAGS (s, ap->idx) & IS_LONG))
388 continue;
389 CALC_LEN (ap->idx);
392 if (len > maxlen[0])
393 maxlen[0] = len;
395 /* It's much easier to calculate length for description column! */
396 len = strlen (DESC (s, ue->idx));
397 if (len > maxlen[1])
398 maxlen[1] = len;
401 /* Determine how much room we have, and how much we will allocate to each col.
402 * Do not address pathological cases. Output will just be ugly. */
403 columns = get_cols () - 1;
404 if (maxlen[0] + maxlen[1] + indent * 2 > columns) {
405 /* col 0 gets whatever it wants. we'll wrap the desc col. */
406 maxlen[1] = columns - (maxlen[0] + indent * 2);
407 if (maxlen[1] < 14) /* 14 is arbitrary lower limit on desc width. */
408 maxlen[1] = INT_MAX;
410 desccol = maxlen[0] + indent * 2;
412 #define PRINT_SPACES(fp,n)\
413 do{\
414 int _n;\
415 _n=(n);\
416 while(_n-- > 0)\
417 fputc(' ',(fp));\
418 }while(0)
421 /* Second pass (same as above loop), this time we print. */
422 /* Sloppy hack: We iterate twice. The first time we print short and long options.
423 The second time we print those lines that have ONLY long options. */
424 while (print_run++ < 2) {
425 for (ue = byr_val; ue; ue = ue->next) {
426 usg_elem *ap;
427 int nwords = 0, nchars = 0, has_short = 0;
429 /* TODO: get has_short schtick to work */
430 has_short = !(FLAGS (s, ue->idx) & IS_LONG);
431 for (ap = ue->alias; ap; ap = ap->next) {
432 if (!(FLAGS (s, ap->idx) & IS_LONG)) {
433 has_short = 1;
434 break;
437 if ((print_run == 1 && !has_short) ||
438 (print_run == 2 && has_short))
439 continue;
441 PRINT_SPACES (fp, indent);
442 nchars += indent;
444 /* Print, adding a ", " between aliases. */
445 #define PRINT_IT(i) do{\
446 if(nwords++)\
447 nchars+=fprintf(fp,", ");\
448 nchars+=fprintf(fp,"%s",s->options[i].opt_fmt);\
449 }while(0)
451 if (!(FLAGS (s, ue->idx) & IS_LONG))
452 PRINT_IT (ue->idx);
454 /* print short aliases first. */
455 for (ap = ue->alias; ap; ap = ap->next) {
456 if (!(FLAGS (s, ap->idx) & IS_LONG))
457 PRINT_IT (ap->idx);
461 if (FLAGS (s, ue->idx) & IS_LONG)
462 PRINT_IT (ue->idx);
464 /* repeat the above loop, this time for long aliases. */
465 for (ap = ue->alias; ap; ap = ap->next) {
466 if (FLAGS (s, ap->idx) & IS_LONG)
467 PRINT_IT (ap->idx);
470 /* pad to desccol */
471 PRINT_SPACES (fp, desccol - nchars);
473 /* Print description, wrapped to maxlen[1] columns. */
474 if (1) {
475 const char *pstart;
477 pstart = DESC (s, ue->idx);
478 while (1) {
479 int n = 0;
480 const char *lastws = NULL, *p;
482 p = pstart;
484 while (*p && n < maxlen[1]
485 && *p != '\n') {
486 if (isspace ((Char)(*p))
487 || *p == '-') lastws =
489 n++;
490 p++;
493 if (!*p) { /* hit end of desc. done. */
494 fprintf (fp, "%s\n",
495 pstart);
496 break;
498 else if (*p == '\n') { /* print everything up to here then wrap. */
499 fprintf (fp, "%.*s\n", n,
500 pstart);
501 PRINT_SPACES (fp, desccol);
502 pstart = p + 1;
503 continue;
505 else { /* we hit the edge of the screen. wrap at space if possible. */
506 if (lastws) {
507 fprintf (fp,
508 "%.*s\n",
509 (int)(lastws - pstart),
510 pstart);
511 pstart =
512 lastws + 1;
514 else {
515 fprintf (fp,
516 "%.*s\n",
518 pstart);
519 pstart = p + 1;
521 PRINT_SPACES (fp, desccol);
522 continue;
527 } /* end while */
528 free (store);
529 return 0;
531 #endif /* no scanopt_usage */
534 static int scanopt_err (s, opt_offset, is_short, err)
535 struct _scanopt_t *s;
536 int opt_offset;
537 int is_short;
538 int err;
540 const char *optname = "";
541 char optchar[2];
543 if (!s->no_err_msg) {
545 if (s->index > 0 && s->index < s->argc) {
546 if (is_short) {
547 optchar[0] =
548 s->argv[s->index][s->subscript];
549 optchar[1] = '\0';
550 optname = optchar;
552 else {
553 optname = s->argv[s->index];
557 fprintf (stderr, "%s: ", s->argv[0]);
558 switch (err) {
559 case SCANOPT_ERR_ARG_NOT_ALLOWED:
560 fprintf (stderr,
562 ("option `%s' doesn't allow an argument\n"),
563 optname);
564 break;
565 case SCANOPT_ERR_ARG_NOT_FOUND:
566 fprintf (stderr,
567 _("option `%s' requires an argument\n"),
568 optname);
569 break;
570 case SCANOPT_ERR_OPT_AMBIGUOUS:
571 fprintf (stderr, _("option `%s' is ambiguous\n"),
572 optname);
573 break;
574 case SCANOPT_ERR_OPT_UNRECOGNIZED:
575 fprintf (stderr, _("Unrecognized option `%s'\n"),
576 optname);
577 break;
578 default:
579 fprintf (stderr, _("Unknown error=(%d)\n"), err);
580 break;
583 return err;
587 /* Internal. Match str against the regex ^--([^=]+)(=(.*))?
588 * return 1 if *looks* like a long option.
589 * 'str' is the only input argument, the rest of the arguments are output only.
590 * optname will point to str + 2
593 static int matchlongopt (str, optname, optlen, arg, arglen)
594 char *str;
595 char **optname;
596 int *optlen;
597 char **arg;
598 int *arglen;
600 char *p;
602 *optname = *arg = (char *) 0;
603 *optlen = *arglen = 0;
605 /* Match regex /--./ */
606 p = str;
607 if (p[0] != '-' || p[1] != '-' || !p[2])
608 return 0;
610 p += 2;
611 *optname = (char *) p;
613 /* find the end of optname */
614 while (*p && *p != '=')
615 ++p;
617 *optlen = p - *optname;
619 if (!*p)
620 /* an option with no '=...' part. */
621 return 1;
624 /* We saw an '=' char. The rest of p is the arg. */
625 p++;
626 *arg = p;
627 while (*p)
628 ++p;
629 *arglen = p - *arg;
631 return 1;
635 /* Internal. Look up long or short option by name.
636 * Long options must match a non-ambiguous prefix, or exact match.
637 * Short options must be exact.
638 * Return boolean true if found and no error.
639 * Error stored in err_code or zero if no error. */
640 static int find_opt (s, lookup_long, optstart, len, err_code, opt_offset)
641 struct _scanopt_t *s;
642 int lookup_long;
643 char *optstart;
644 int len;
645 int *err_code;
646 int *opt_offset;
648 int nmatch = 0, lastr_val = 0, i;
650 *err_code = 0;
651 *opt_offset = -1;
653 if (!optstart)
654 return 0;
656 for (i = 0; i < s->optc; i++) {
657 char *optname;
659 optname =
660 (char *) (s->options[i].opt_fmt +
661 (lookup_long ? 2 : 1));
663 if (lookup_long && (s->aux[i].flags & IS_LONG)) {
664 if (len > s->aux[i].namelen)
665 continue;
667 if (strncmp (optname, optstart, len) == 0) {
668 nmatch++;
669 *opt_offset = i;
671 /* exact match overrides all. */
672 if (len == s->aux[i].namelen) {
673 nmatch = 1;
674 break;
677 /* ambiguity is ok between aliases. */
678 if (lastr_val
679 && lastr_val ==
680 s->options[i].r_val) nmatch--;
681 lastr_val = s->options[i].r_val;
684 else if (!lookup_long && !(s->aux[i].flags & IS_LONG)) {
685 if (optname[0] == optstart[0]) {
686 nmatch++;
687 *opt_offset = i;
692 if (nmatch == 0) {
693 *err_code = SCANOPT_ERR_OPT_UNRECOGNIZED;
694 *opt_offset = -1;
696 else if (nmatch > 1) {
697 *err_code = SCANOPT_ERR_OPT_AMBIGUOUS;
698 *opt_offset = -1;
701 return *err_code ? 0 : 1;
705 int scanopt (svoid, arg, optindex)
706 scanopt_t *svoid;
707 char **arg;
708 int *optindex;
710 char *optname = NULL, *optarg = NULL, *pstart;
711 int namelen = 0, arglen = 0;
712 int errcode = 0, has_next;
713 const optspec_t *optp;
714 struct _scanopt_t *s;
715 struct _aux *auxp;
716 int is_short;
717 int opt_offset = -1;
719 s = (struct _scanopt_t *) svoid;
721 /* Normalize return-parameters. */
722 SAFE_ASSIGN (arg, NULL);
723 SAFE_ASSIGN (optindex, s->index);
725 if (s->index >= s->argc)
726 return 0;
728 /* pstart always points to the start of our current scan. */
729 pstart = s->argv[s->index] + s->subscript;
730 if (!pstart)
731 return 0;
733 if (s->subscript == 0) {
735 /* test for exact match of "--" */
736 if (pstart[0] == '-' && pstart[1] == '-' && !pstart[2]) {
737 SAFE_ASSIGN (optindex, s->index + 1);
738 INC_INDEX (s, 1);
739 return 0;
742 /* Match an opt. */
743 if (matchlongopt
744 (pstart, &optname, &namelen, &optarg, &arglen)) {
746 /* it LOOKS like an opt, but is it one?! */
747 if (!find_opt
748 (s, 1, optname, namelen, &errcode,
749 &opt_offset)) {
750 scanopt_err (s, opt_offset, 0, errcode);
751 return errcode;
753 /* We handle this below. */
754 is_short = 0;
756 /* Check for short opt. */
758 else if (pstart[0] == '-' && pstart[1]) {
759 /* Pass through to below. */
760 is_short = 1;
761 s->subscript++;
762 pstart++;
765 else {
766 /* It's not an option. We're done. */
767 return 0;
771 /* We have to re-check the subscript status because it
772 * may have changed above. */
774 if (s->subscript != 0) {
776 /* we are somewhere in a run of short opts,
777 * e.g., at the 'z' in `tar -xzf` */
779 optname = pstart;
780 namelen = 1;
781 is_short = 1;
783 if (!find_opt
784 (s, 0, pstart, namelen, &errcode, &opt_offset)) {
785 return scanopt_err (s, opt_offset, 1, errcode);
788 optarg = pstart + 1;
789 if (!*optarg) {
790 optarg = NULL;
791 arglen = 0;
793 else
794 arglen = strlen (optarg);
797 /* At this point, we have a long or short option matched at opt_offset into
798 * the s->options array (and corresponding aux array).
799 * A trailing argument is in {optarg,arglen}, if any.
802 /* Look ahead in argv[] to see if there is something
803 * that we can use as an argument (if needed). */
804 has_next = s->index + 1 < s->argc
805 && strcmp ("--", s->argv[s->index + 1]) != 0;
807 optp = s->options + opt_offset;
808 auxp = s->aux + opt_offset;
810 /* case: no args allowed */
811 if (auxp->flags & ARG_NONE) {
812 if (optarg && !is_short) {
813 scanopt_err (s, opt_offset, is_short, errcode =
814 SCANOPT_ERR_ARG_NOT_ALLOWED);
815 INC_INDEX (s, 1);
816 return errcode;
818 else if (!optarg)
819 INC_INDEX (s, 1);
820 else
821 s->subscript++;
822 return optp->r_val;
825 /* case: required */
826 if (auxp->flags & ARG_REQ) {
827 if (!optarg && !has_next)
828 return scanopt_err (s, opt_offset, is_short,
829 SCANOPT_ERR_ARG_NOT_FOUND);
831 if (!optarg) {
832 /* Let the next argv element become the argument. */
833 SAFE_ASSIGN (arg, s->argv[s->index + 1]);
834 INC_INDEX (s, 2);
836 else {
837 SAFE_ASSIGN (arg, (char *) optarg);
838 INC_INDEX (s, 1);
840 return optp->r_val;
843 /* case: optional */
844 if (auxp->flags & ARG_OPT) {
845 SAFE_ASSIGN (arg, optarg);
846 INC_INDEX (s, 1);
847 return optp->r_val;
851 /* Should not reach here. */
852 return 0;
856 int scanopt_destroy (svoid)
857 scanopt_t *svoid;
859 struct _scanopt_t *s;
861 s = (struct _scanopt_t *) svoid;
862 if (s) {
863 if (s->aux)
864 free (s->aux);
865 free (s);
867 return 0;
871 /* vim:set tabstop=8 softtabstop=4 shiftwidth=4: */