/usr/include/styx/ctx_app.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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | /* ------------------------------------------------------------------------ */
/* */
/* [ctx_app.h] Current Program Context */
/* */
/* Copyright (c) 1993 by D\olle, Manns */
/* ------------------------------------------------------------------------ */
/* File generated by 'ctoh'. Don't change manually. */
#ifndef ctx_app_INCL
#define ctx_app_INCL
#include "ctx_dfn.h"
#ifdef __cplusplus
extern "C" {
#endif
/* -------------------- current context: Set & Get ------------------------ */
CTX_T CTX_ctx_val(void); /* the current context */
void CTX_ctx_set(CTX_T ctx); /* make 'ctx' the current context */
/* --------------------- current context: Eval ---------------------------- */
/* The following functions define the program interface to their context variables.
*/
Abs_T CTX_eval(c_string Name, c_bool Index)
#define CTX_EVAL(typ,name) ABS_CAST(typ,CTX_eval(name,C_False))
#define CTX_INDEX(name) ((long)(CTX_eval(name,C_True)))
/* 'Index' --> finds index of 'Name' in context; (-1) if missing
otherwise --> finds value of 'Name' in context; the program aborts if missing
*/
;
int CTX_argcnt(void); /* number of variable arguments */
Abs_T CTX_argval(int idx)
#define CTX_ARGVAL(typ,idx) ABS_CAST(typ,CTX_argval(idx))
/* variable argument, indexed by 'idx' */
;
#ifdef __cplusplus
}
#endif
#endif
|