This file is indexed.

/usr/include/ncbi-vdb/rdbms/sybase.h is in libncbi-vdb-dev 2.8.1+dfsg-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
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
#ifndef _h_rdbms_sybase_
#define _h_rdbms_sybase_

#ifndef _h_rdbms_rdbms_
#include <rdbms/rdbms.h>
#endif

#ifdef __cplusplus
extern "C" {
#endif

/*--------------------------------------------------------------------------
 * Sybase
 */

/* constants
 */
#ifndef CS_VERSION_100
#define CS_VERSION_100 112
#endif

#ifndef CS_VERSION_110
#define CS_VERSION_110 1100
#endif

#ifndef CS_VERSION_125
#define CS_VERSION_125 12500
#endif

#ifndef CS_VERSION_150
#define CS_VERSION_150 15001
#endif

#ifndef MIN_CS_VERSION
#define MIN_CS_VERSION CS_VERSION_125
#endif

#ifndef OS_CS_VERSION
#define OS_CS_VERSION CS_VERSION_125
#endif

/* SybaseInit
 *  initializes the sybase rdbms
 */
rc_t SybaseInit ( int version );


#ifdef __cplusplus
}
#endif

#endif /* _h_rdbms_sybase_ */