This file is indexed.

/usr/include/ncarg/hlu/CoordArrTableFloatP.h is in libncarg-dev 6.1.2-7.

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
62
63
64
65
66
67
68
69
70
71
/*
 *      $Id: CoordArrTableFloatP.h,v 1.6 1995-04-07 10:41:15 boote Exp $
 */
/************************************************************************
*									*
*			     Copyright (C)  1993			*
*	     University Corporation for Atmospheric Research		*
*			     All Rights Reserved			*
*									*
************************************************************************/
/*
 *	File:		CoordArrTableFloatP.h
 *
 *	Author:		Jeff W. Boote
 *			National Center for Atmospheric Research
 *			PO 3000, Boulder, Colorado
 *
 *	Date:		Wed Jul 28 12:09:03 MDT 1993
 *
 *	Description:	This file contains all the declarations for the
 *			CoordArrTableFloat object.  This object is a private
 *			object to be used internally by DataComm sub-classes
 *			and by the CoordArrTable object so there is no
 *			public header file.
 */
#ifndef _NCoordArrTableFloatP_h
#define _NCoordArrTableFloatP_h

typedef struct _NhlCoordArrTableFloatClassRec
					*NhlCoordArrTableFloatClass;
typedef struct _NhlCoordArrTableFloatLayerRec *NhlCoordArrTableFloatLayer;

extern NhlClass NhlcoordArrTableFloatClass;

typedef struct _NhlCoordArrTableFloatLayerPart{
	NhlGenArray	xtable;
	NhlGenArray	ytable;
	NhlGenArray	xtable_lens;
	NhlGenArray	ytable_lens;

	float		missing_x;
	float		missing_y;
	float		max_x;
	float		max_y;
	float		min_x;
	float		min_y;

	/*
	 * Private Fields
	 */
	NhlBoolean	missing_x_set;
	NhlBoolean	missing_y_set;
} NhlCoordArrTableFloatLayerPart;

typedef struct _NhlCoordArrTableFloatLayerRec{
	NhlObjLayerPart			base;
	NhlCoordArrTableFloatLayerPart	flt;
} NhlCoordArrTableFloatLayerRec;

typedef struct _NhlCoordArrTableFloatClassPart{
	int	foo;
} NhlCoordArrTableFloatClassPart;

typedef struct _NhlCoordArrTableFloatClassRec{
	NhlObjClassPart			base_class;
	NhlCoordArrTableFloatClassPart	flt_class;
} NhlCoordArrTableFloatClassRec;

extern NhlCoordArrTableFloatClassRec NhlcoordArrTableFloatClassRec;

#endif	/* _NCoordArrTableFloatP_h */