This file is indexed.

/usr/include/cloudproviders/enums.c is in libcloudproviders-dev 0.2.5-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
#include "enums.h"
#include "cloudproviderscollector.h"
#include "cloudprovidersaccount.h"
#include "cloudprovidersaccountexporter.h"
#include "cloudprovidersprovider.h"
#include "cloudprovidersproviderexporter.h"

#define C_ENUM(v) ((gint) v)
#define C_FLAGS(v) ((guint) v)

/* enumerations from "cloudprovidersaccount.h" */

GType
cloud_providers_account_status_get_type (void)
{
  static volatile gsize gtype_id = 0;
  static const GEnumValue values[] = {
    { C_ENUM(CLOUD_PROVIDERS_ACCOUNT_STATUS_INVALID), "CLOUD_PROVIDERS_ACCOUNT_STATUS_INVALID", "invalid" },
    { C_ENUM(CLOUD_PROVIDERS_ACCOUNT_STATUS_IDLE), "CLOUD_PROVIDERS_ACCOUNT_STATUS_IDLE", "idle" },
    { C_ENUM(CLOUD_PROVIDERS_ACCOUNT_STATUS_SYNCING), "CLOUD_PROVIDERS_ACCOUNT_STATUS_SYNCING", "syncing" },
    { C_ENUM(CLOUD_PROVIDERS_ACCOUNT_STATUS_ERROR), "CLOUD_PROVIDERS_ACCOUNT_STATUS_ERROR", "error" },
    { 0, NULL, NULL }
  };
  if (g_once_init_enter (&gtype_id)) {
    GType new_type = g_enum_register_static ("CloudProvidersAccountStatus", values);
    g_once_init_leave (&gtype_id, new_type);
  }
  return (GType) gtype_id;
}