This file is indexed.

/usr/include/nih/option.h is in libnih-dev 1.0.3-4ubuntu25.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/* libnih
 *
 * Copyright © 2009 Scott James Remnant <scott@netsplit.com>.
 * Copyright © 2009 Canonical Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2, as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#ifndef NIH_OPTION_H
#define NIH_OPTION_H

/**
 * Provides a flexible command-line option and arguments parser that
 * automatically provides built-in options for adjusting output verbosity
 * and provides --help output.
 *
 * Describe your commands options using an array of NihOption members
 * and pass this along with the argc and argv variables to
 * nih_option_parser().
 *
 * Options can be set from arguments with helper functions, nih_option_count()
 * and nih_option_int() are provided for you.
 *
 * Help and usage output can be customised with the nih_option_set_usage(),
 * nih_option_set_usage_stem(), nih_option_set_synopsis(),
 * nih_option_set_help() and nih_option_set_footer() functions.  Be sure
 * to call these before the option parser.
 **/

#include <nih/macros.h>


/**
 * NihOptionSetter;
 * @option: NihOption invoked,
 * @arg: argument to parse.
 *
 * An option setter is a function that is called whenever an option is
 * found in the command-line arguments.  If the option expects a value
 * then the argument is passed to the function, otherwise NULL is
 * passed.
 *
 * The function may use the value member of @option to store the parsed
 * value, or may take its own action.
 *
 * If there is an error with the argument the function may return zero
 * to abort parsing.
 **/
typedef struct nih_option NihOption;
typedef int (*NihOptionSetter) (NihOption *option, const char *arg);


/**
 * NihOptionGroup:
 * @title: descriptive help message.
 *
 * This structure is used to define a group of options that are collated
 * together when --help is given.
 **/
typedef struct nih_option_group {
	char *title;
} NihOptionGroup;

/**
 * NihOption:
 * @option: short option character,
 * @long_option: long option name,
 * @help: descriptive help message,
 * @group: group option is member of,
 * @arg_name: description of value or NULL if option takes no argument,
 * @value: pointer of variable to store argument in,
 * @setter: function to store the value.
 *
 * This structure defines an option that may be found in the command-line
 * arguments.  One or both of @option and @long_option myst be specified,
 * if no short option is wanted it may be zero and if no @long_option is
 * wanted it may be NULL.
 *
 * If @arg_name is not NULL then the option takes the next non-option
 * argument from the command-line; if @setter is not NULL it is passed
 * this argument, otherwise @value should contain the address of a char *
 * in which a newly allocated copy of the argument will be stored.
 *
 * If @arg_name is NULL then NULL if passed to @setter.  If both
 * @arg_name and @setter are NULL then @value should contain the address
 * of an int in which a TRUE value is stored.
 **/
struct nih_option {
	int              option;
	char            *long_option;

	char            *help;
	NihOptionGroup  *group;

	char            *arg_name;
	void            *value;

	NihOptionSetter  setter;
};


/**
 * NIH_OPTION_LAST:
 *
 * This macro may be used as the last option in the list to avoid typing
 * all those NULLs and 0s yourself.
 **/
#define NIH_OPTION_LAST { 0, NULL, NULL, NULL, NULL, NULL, NULL }


NIH_BEGIN_EXTERN

char **    nih_option_parser         (const void *parent,
				      int argc, char *argv[],
				      NihOption *options, int break_nonopt)
	__attribute__ ((warn_unused_result));

NihOption *nih_option_join           (const void *parent,
				      const NihOption *a, const NihOption *b)
	__attribute__ ((warn_unused_result));

int        nih_option_count          (NihOption *option, const char *arg);
int        nih_option_int            (NihOption *option, const char *arg);

int        nih_option_quiet          (NihOption *option, const char *arg);
int        nih_option_verbose        (NihOption *option, const char *arg);
int        nih_option_debug          (NihOption *option, const char *arg);

void       nih_option_set_usage      (const char *usage);
void       nih_option_set_usage_stem (const char *usage);
void       nih_option_set_synopsis   (const char *synopsis);
void       nih_option_set_help       (const char *help);
void       nih_option_set_footer     (const char *footer);

NIH_END_EXTERN

#endif /* NIH_OPTION_H */