This file is indexed.

/usr/include/dclib-0.3/dclib/dclib.h is in libdc-dev 0.3.24~svn3121-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
54
55
56
57
58
59
60
61
/***************************************************************************
                           dclib.h  -  description
                             -------------------
    begin                : Mon May 5 2003
    copyright            : (C) 2003 by Mathias Küster
    email                : mathen@users.berlios.de
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef DCLIB_H
#define DCLIB_H

/* */
#include <dclib/dcos.h>

/**
  *@author Mathias Küster
  */

#include <time.h>

#ifdef __cplusplus
extern "C" {
#endif

/**
 * Initialise used libraries.
 * Parameter must be argv[0].
 * Parameter is only used if compiled for socks proxy support.
 */
void dclibInitDepLibs( char * argv0 );
/** cleanup used libraries */
void dclibDeInitDepLibs();
/** get dclib start time */
time_t dclibUptime();
/** get dclib version string */
const char * dclibVersion();
/** get dclib build date and if svn, the revision */
const char * dclibBuildInfo();
/** get dclib verbose setting */
int dclibVerbose();
/**  set dclib verbose */
void setdclibVerbose( int n );
/** get SSL support */
bool dclibSupportsSSL();

#define DPRINTF if (dclibVerbose()) printf

#ifdef __cplusplus
}
#endif

#endif