This file is indexed.

/usr/include/elementary-1/elm_datetime_common.h is in libelementary-dev 1.8.5-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
/**
 * Identifies a Datetime field, The widget supports 6 fields : Year, month,
 * Date, Hour, Minute, AM/PM
 *
 */
typedef enum _Elm_Datetime_Field_Type
{
   ELM_DATETIME_YEAR    = 0, /**< Indicates Year field */
   ELM_DATETIME_MONTH   = 1, /**< Indicates Month field */
   ELM_DATETIME_DATE    = 2, /**< Indicates Date field */
   ELM_DATETIME_HOUR    = 3, /**< Indicates Hour field */
   ELM_DATETIME_MINUTE  = 4, /**< Indicates Minute field */
   ELM_DATETIME_AMPM    = 5, /**< Indicates AM/PM field */
} Elm_Datetime_Field_Type;