This file is indexed.

/usr/include/paristraceroute/dynarray.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
122
123
124
125
126
127
128
129
130
131
#ifndef DYNARRAY_H
#define DYNARRAY_H

#include <stddef.h>  // size_t
#include <stdbool.h> // bool

/**
 * \file dynarray.h
 * \brief Header file: dynamic array structure
 *
 * dynarray_t manages a dynamic array of potentially infinite size, by
 * allocating memory in a chunk-by-chunk fashion. An initial memory_size is
 * allocated, and this size is increased by a given amount when needed.
 */

/**
 * \struct dynarray_t
 * \brief Structure representing a dynamic array.
 */

typedef struct {
    void   ** elements;  /**< Pointer to the array of elements */
    size_t    size;      /**< Size of the array (in bytes) (should be always <= to max_size) */
    size_t    max_size;  /**< Size of the allocated buffer (in bytes) */ 
} dynarray_t;

/**
 * \brief Create a dynamic array structure.
 * \return A dynarray_t structure representing an empty dynamic array
 */

dynarray_t * dynarray_create();

/**
 * \brief Duplicate a dynarray
 * \param dynarray The dynarray to duplicate
 * \param element_dup A function to call when an element stored in the dynarray is duplicated
 *     (can be NULL)
 * \return The address of the newly created array if successfull, NULL otherwise
 */

dynarray_t * dynarray_dup(const dynarray_t * dynarray, void * (*element_dup)(void *));

/**
 * \brief Free a dynamic array structure.
 * \param dynarray Pointer to a dynamic array structure
 * \param element_free Pointer to a function used to free up element resources
 *     (can be NULL)
 */

void dynarray_free(dynarray_t * dynarray , void (*element_free) (void * element));

/**
 * \brief Add a new element at the end of the dynamic array.
 * \param dynarray Pointer to a dynamic array structure
 * \param element Pointer to the element to add
 * \return true iif successful
 */

bool dynarray_push_element(dynarray_t * dynarray, void * element);

/**
 * \brief Delete the i-th element stored in a dynarray_t.
 * The element from i + 1 to the end of the array are moved one cell before.
 * \param dynarray A dynarray_t instance
 * \param i The index of the element to remove.
 *    Valid values are between 0 and dynarray_get_size() - 1
 *  If i is out of range, nothing happens and return false. 
 * \param element_free Pointer to a function used to free up element resources
 *     (can be NULL)
 * \return true iif successful
 */

bool dynarray_del_ith_element(dynarray_t * dynarray, size_t i, void (*element_free) (void * element));

/**
 * \brief Delete n elements stored in a dynarray_t starting from i.
 * \param dynarray A dynarray_t instance
 * \param i The index of first element to remove.
 * \param element_free Pointer to a function used to free up element resources
 *     (can be NULL)
 * \return true iif successful
 */

bool dynarray_del_n_elements(dynarray_t * dynarray, size_t i, size_t n, void (*element_free)(void * element));
/**
 * \brief Clear a dynamic array.
 * \param dynarray Pointer to a dynamic array structure
 * \param element_free Pointer to a function used to free up element resources
 *     (can be NULL)
 */

void dynarray_clear(dynarray_t * dynarray, void (*element_free)(void * element));

/**
 * \brief Get the current size of a dynamic array.
 * \param dynarray Pointer to a dynamic array structure
 * \return Current size of the dynamic array
 */

size_t dynarray_get_size(const dynarray_t * dynarray);

/**
 * \brief Get all the elements inside a dynamic array.
 * \param dynarray Pointer to a dynamic array structure
 * \return An array of pointer to the dynamic array elements
 */

void ** dynarray_get_elements(dynarray_t * dynarray);

/**
 * \brief Retrieve the i-th element stored in a dynarray
 * \param i The index of the element to retrieve.
 *    Valid values are between 0 and dynarray_get_size() - 1
 * \return NULL if i-th refers to an element out of range 
 *    the address of the i-th element otherwise.
 */

void * dynarray_get_ith_element(const dynarray_t * dynarray, unsigned int i);

/**
 * \brief Dump dynarray contents.
 * \param dynarray A dynarray_t instance.
 * \param element This function is called back whenever we dump an element
 *    stored in the dynarray. The address of the current element is passed
 *    as parameter.
 */

void dynarray_dump(const dynarray_t * dynarray, void (*element_dump)(const void *));

#endif