/usr/include/styx/ctx_imp.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 32 33 34 | /* ------------------------------------------------------------------------ */
/* */
/* [ctx_imp.h] Program Context Implementation Types */
/* */
/* Copyright (c) 1993 by Doelle, Manns */
/* ------------------------------------------------------------------------ */
#ifndef CTX_IMP_INCL
#define CTX_IMP_INCL
#include "standard.h"
ConcreteType( CTX_L_Imp )
{
/* static */
c_string ide; /* Identifier */
c_byte cat; /* Category */
c_byte typ; /* Type */
c_string dft; /* Default */
/* dynamic */
c_bool asg; /* ?assigned */
StdCPtr val; /* Value */
};
ConcreteType( CTX_T_Imp )
{
short cnt;
c_string prg;
CTX_L_Imp tbl; /* [cnt] */
};
#define CTX_T_IMP(tbl) ((CTX_T_Imp)(tbl))
#endif //_INCL
|