This file is indexed.

/usr/include/paristraceroute/options.h is in libparistraceroute-dev 0.93+git20160927-1.

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
#ifndef OPTIONS_H
#define OPTIONS_H

#include <stdbool.h>   // bool
#include "optparse.h"  // optspec
#include "vector.h"    // vector

#define END_OPT_SPECS { .action = NULL}

//---------------------------------------------------------------------------
// option_t
//---------------------------------------------------------------------------

typedef struct opt_spec opt_spec_t;
typedef struct opt_spec option_t;

/**
 * \brief Rename the short form of an option_t instance
 * \param A pointer to an option_t instance
 * \param String containing the new short form
 * \return true iif successful
 */

bool option_rename_sf(option_t * option, char * sf);

/**
 * \brief Rename the long form of an option_t instance
 * \param A pointer to an option_t instance
 * \param String containing the new long form
 * \return true iif successful
 */

bool option_rename_lf(option_t * option, char * lf);

/**
 * \brief Duplicate  an option_t instance.
 * \param option A pointer to the option_t instance to duplicate.
 * \return A pointer to the duplicated option instance.
 */

option_t * option_dup(const option_t * option);

//---------------------------------------------------------------------------
// options_t
//---------------------------------------------------------------------------

typedef struct {
    /**
     * A callback to handle collision between two options. If set to NULL (default value)
     * the options_t instance keep option1 and ignore option2.
     * \param option1 An opt_spec_t instance already stored in this options_t instance.
     * \param option2 An opt_spec_t instance that we attempt to insert in this options_t instance.
     * \return Must return true if the collision has been properly handled, false otherwise.
     */

    bool (* collision_callback)(
        option_t       * option1,
        const option_t * option2
    );

    vector_t * optspecs;  /**< A pointer to a vector structure containing optspecs instances */
} options_t;

/**
 * \brief Create the options structure containig the command line options
 * \param collision_callback A callback to handle collision between options
 * \return A pointer to options structure
 */

options_t * options_create(bool (* collision_callback)(option_t * option1, const option_t * option2));

/**
 * \brief Add options to an array of options
 * \param options A pointer to an options_t structure containing the array of options to fill
 * \param option A pointer to an array of options to add
 * \return true iif successful
 */

bool options_add_optspecs(options_t * options, const option_t * option);

/**
 * \brief Add one option to an array of options
 * \param options A pointer to an options_t structure containing the array of options to fill
 * \param option A pointer to the  options to add
 * \return true iif successful
 */

bool options_add_optspec(options_t * options, const option_t * option);

/**
 * \brief Add the common options (help and version) to an array of options
 * \param options A pointer to an options_t structure containing the array of options to fill
 * \param version A string containing the data to put in the version message
 * \return true iif successful
 */

bool options_add_common(options_t * options, char * version);

/**
 * \brief Get the number of otpons contained in an options_t instance
 * \param A pointer to an options_t structure
 * \return the number of options
 */

size_t options_get_num_options(const options_t * options);

/**
 * \brief Dump an options_t instance
 * \param options Pointer to
 */
void options_dump(const options_t * options);

/**
 * \brief Parse command line options forcing the options before the argument
 * \param options Pointer to options used
 * \param usage a string containig the message to put when no argument passed
 * \param args vector containing the arguments passed
 */
int options_parse(options_t * options, const char * usage, char ** args);

#endif