3 * Parsing tracing options
5 * (c) 1999 Straylight/Edgeware
8 /*----- Licensing notice --------------------------------------------------*
10 * This file is part of the mLib utilities library.
12 * mLib is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU Library General Public License as
14 * published by the Free Software Foundation; either version 2 of the
15 * License, or (at your option) any later version.
17 * mLib is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU Library General Public License for more details.
22 * You should have received a copy of the GNU Library General Public
23 * License along with mLib; if not, write to the Free
24 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
28 /*----- Header files ------------------------------------------------------*/
37 /*----- Main code ---------------------------------------------------------*/
39 /* --- @traceopt@ --- *
41 * Arguments: @const trace_opt *t@ = pointer to trace options table
42 * @const char *p@ = option string supplied by user
43 * @unsigned f@ = initial tracing flags
44 * @unsigned bad@ = forbidden tracing flags
46 * Returns: Trace flags as set by user.
48 * Use: Parses an option string from the user and sets the
49 * appropriate trace flags. If the argument is null or a single
50 * `?' character, a help message is displayed.
53 unsigned traceopt(const trace_opt *t, const char *p,
54 unsigned f, unsigned bad)
58 /* --- Dump out help text --- */
60 if (!p || STRCMP(p, ==, "?")) {
62 puts("Trace options:");
63 for (tt = t; tt->ch; tt++) {
64 if (!(tt->f & ~bad) || !tt->help)
66 printf(" `%c': %s\n", tt->ch, tt->help);
71 /* --- Parse the string properly --- */
84 for (tt = t; tt->ch; tt++) {
95 moan("unknown trace option `%c'", *p);
105 /*----- That's all, folks -------------------------------------------------*/