This file is indexed.

/usr/include/libical-glib/i-cal-reqstat-type.h is in libical-dev 3.0.1-5.

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
/* Generated file (by generator) */

/*
 * Copyright (C) 2015 William Yu <williamyu@gnome.org>
 *
 * This library is free software: you can redistribute it and/or modify it
 * under the terms of version 2.1. of the GNU Lesser General Public License
 * as published by the Free Software Foundation.
 *
 * This library is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
 * for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this library. If not, see <http://www.gnu.org/licenses/>.
 */

#if !defined (__LIBICAL_GLIB_H_INSIDE__) && !defined (LIBICAL_GLIB_COMPILATION)
#error "Only <libical-glib/libical-glib.h> can be included directly."
#endif

#ifndef I_CAL_REQSTAT_TYPE_H
#define I_CAL_REQSTAT_TYPE_H

#include <libical-glib/i-cal-forward-declarations.h>
#include <libical-glib/i-cal-object.h>
#include <libical-glib/i-cal-enums.h>

G_BEGIN_DECLS

#define I_CAL_REQSTAT_TYPE_TYPE \
    (i_cal_reqstat_type_get_type ())

#define I_CAL_REQSTAT_TYPE(obj) \
    (G_TYPE_CHECK_INSTANCE_CAST \
    ((obj), I_CAL_REQSTAT_TYPE_TYPE, ICalReqstatType))

#define I_CAL_REQSTAT_TYPE_CLASS(klass) \
    (G_TYPE_CHECK_CLASS_CAST \
    ((klass), I_CAL_REQSTAT_TYPE_TYPE, ICalReqstatTypeClass))

#define I_CAL_IS_REQSTAT_TYPE(obj) \
    (G_TYPE_CHECK_INSTANCE_TYPE \
    ((obj), I_CAL_REQSTAT_TYPE_TYPE))

#define I_CAL_IS_REQSTAT_TYPE_CLASS(klass) \
    (G_TYPE_CHECK_CLASS_TYPE \
    ((klass), I_CAL_REQSTAT_TYPE_TYPE))

/**
 * ICalReqstatType:
 *
 * This is the ICalReqstatType instance.
 */

/**
 * ICalReqstatTypeClass:
 *
 * This is the ICalReqstatType class.
 */
typedef struct _ICalReqstatTypeClass ICalReqstatTypeClass;

struct _ICalReqstatType {
    /*< private >*/
    ICalObject parent;
};

struct _ICalReqstatTypeClass {
    /*< private >*/
    ICalObjectClass parent;
};

LIBICAL_ICAL_EXPORT
GType 		i_cal_reqstat_type_get_type	(void);

LIBICAL_ICAL_EXPORT
ICalReqstatType *
		i_cal_reqstat_type_from_string	(const gchar *str);

LIBICAL_ICAL_EXPORT
gchar *		i_cal_reqstat_type_as_string_r	(ICalReqstatType *stat);

LIBICAL_ICAL_EXPORT
ICalRequestStatus 
		i_cal_reqstat_type_get_code	(ICalReqstatType *reqstat);

LIBICAL_ICAL_EXPORT
void		i_cal_reqstat_type_set_code	(ICalReqstatType *reqstat,
						 ICalRequestStatus code);

LIBICAL_ICAL_EXPORT
const gchar *	i_cal_reqstat_type_get_desc	(ICalReqstatType *reqstat);

LIBICAL_ICAL_EXPORT
const gchar *	i_cal_reqstat_type_get_debug	(ICalReqstatType *reqstat);

G_END_DECLS

#endif /* I_CAL_REQSTAT_TYPE_H */