This file is indexed.

/usr/include/plplot/pltk.h is in plplot-tcl-dev 5.10.0+dfsg2-0.1ubuntu2.

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
// $Id: pltk.h 11295 2010-11-01 22:19:45Z airwin $
//
// Maurice LeBrun
// 28-Apr-95
//
// Declarations for PLplot/TK utility routines.
//

#ifndef __PLTK_H__
#define __PLTK_H__

#include "pltcl.h"
#include <tk.h>

#ifdef __cplusplus
extern "C" {
#endif

// Generic initialization routine for extended wish'es.

#ifdef BUILD_Plplot
#undef TCL_STORAGE_CLASS
#define TCL_STORAGE_CLASS    DLLEXPORT
#endif // BUILD_Vfs

EXTERN PLDLLIMPEXP_TCLTK int
Pltk_Init( Tcl_Interp *interp );

// Main program for wish, with PLplot extensions.

EXTERN PLDLLIMPEXP_TCLTK int
pltkMain( int argc, const char **argv, char *RcFileName,
          int ( *AppInit )( Tcl_Interp *interp ) );

#ifdef __cplusplus
}
#endif

#endif  // __PLTK_H__