This file is indexed.

/usr/share/gobject-introspection-1.0/tests/utility.c is in gobject-introspection 1.40.0-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
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
#include "utility.h"

G_DEFINE_TYPE (UtilityObject, utility_object, G_TYPE_OBJECT);

/**
 * UtilityBuffer:
 * @data: (type gpointer): the data
 *
 **/

static void
utility_object_class_init (UtilityObjectClass *klass)
{

}

static void
utility_object_init (UtilityObject *object)
{

}

void
utility_object_watch_dir (UtilityObject *object,
                          const char *path,
                          UtilityFileFunc func,
                          gpointer user_data,
                          GDestroyNotify destroy)
{

}

/**
 * utility_dir_foreach:
 * @path::
 * @func: (scope call):
 * @user_data::
 *
 */
void
utility_dir_foreach (const char *path, UtilityFileFunc func, gpointer user_data)
{

}