This file is indexed.

/usr/include/styx/ctx_dfn.h is in styx-dev 2.0.1-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
/* ------------------------------------------------------------------------ */
/*                                                                          */
/* [ctx_dfn.h]                  Type: Program Context                       */
/*                                                                          */
/* Copyright (c) 1993 by Doelle, Manns                                      */
/* ------------------------------------------------------------------------ */

#ifndef CTX_DFN_INCL
#define CTX_DFN_INCL

#include "standard.h"

AbstractType( CTX_T ); /* Abstract program context type */

/* --------------- Category of context variables --------------------------- */

#define CTX_ARG      1
#define CTX_OPT      2
#define CTX_ENV      3

/* --------------- Types of context variables ------------------------------ */

#define CTX_FLAG     1
#define CTX_INT      2
#define CTX_PATH     3
#define CTX_STRING   4
#define CTX_NAME     5

#define CTX_VARG     "vargs"

#endif //_INCL