This file is indexed.

/usr/include/blockdev/extra_arg.h is in libblockdev-utils-dev 2.16-2.

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
#include <glib.h>
#include <glib-object.h>

#ifndef BD_UTILS_EXTRA_ARG
#define BD_UTILS_EXTRA_ARG

#define BD_UTIL_TYPE_EXTRA_ARG (bd_extra_arg_get_type ())
GType bd_extra_arg_get_type ();

/**
 * BDExtraArg:
 *
 * See bd_extra_arg_new() for an example on how to construct the extra args.
 */
typedef struct BDExtraArg {
    gchar *opt;
    gchar *val;
} BDExtraArg;

BDExtraArg* bd_extra_arg_copy (BDExtraArg *arg);
void bd_extra_arg_free (BDExtraArg *arg);
BDExtraArg* bd_extra_arg_new (const gchar *opt, const gchar *val);

#endif  /* BD_UTILS_EXTRA_ARG */