This file is indexed.

/usr/include/cvc3/c_interface_defs.h is in libcvc3-dev 2.4.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
/*****************************************************************************/
/*!
 * \file c_interface_defs.h
 * 
 * Author: Clark Barrett
 * 
 * Created: Thu Jun  5 13:16:26 2003
 *
 * <hr>
 *
 * License to use, copy, modify, sell and/or distribute this software
 * and its documentation for any purpose is hereby granted without
 * royalty, subject to the terms and conditions defined in the \ref
 * LICENSE file provided with this distribution.
 * 
 * <hr>
 * 
 */
/*****************************************************************************/

#ifndef _cvc3__include__c_interface_defs_h_
#define _cvc3__include__c_interface__defs_h_

#include "kinds.h"

#ifdef CVC3_STRONG_TYPING

        typedef struct _cvc_VC *VC;
        typedef struct _cvc_Context *Context;
        typedef struct _cvc_ExprManager *ExprManager;
        typedef struct _cvc_Flags *Flags;

        typedef struct _cvc_Expr * Expr;
        typedef struct _cvc_Op * Op;
        typedef struct _cvc_Type* Type;
#else

        //This gives absolutely no static pointer typing.
        typedef void* VC;
        typedef void* Context;
        typedef void* ExprManager;
        typedef void* Flags;

        typedef void* Expr;
        typedef void* Op;
        typedef void* Type;
        typedef void* Proof;

#endif
#endif