This file is indexed.

/usr/include/ncarg/hlu/StyleP.h is in libncarg-dev 6.3.0-6build1.

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
/*
 *      $Id: StyleP.h,v 1.2 1997-07-25 21:12:36 dbrown Exp $
 */
/************************************************************************
*									*
*			     Copyright (C)  1992			*
*	     University Corporation for Atmospheric Research		*
*			     All Rights Reserved			*
*									*
************************************************************************/
/*
 *	File:		StyleP.h
 *
 *	Author:		David Brown
 *			National Center for Atmospheric Research
 *			PO 3000, Boulder, Colorado
 *
 *	Date:		Tue Feb 20 18:10:29 MST 1996
 *
 *	Description:	Private header file for Style class
 */
#ifndef _NSTYLEP_h
#define _NSTYLEP_h

#include <ncarg/hlu/BaseP.h>
#include <ncarg/hlu/Style.h>

/* private resource */

typedef struct _NhlStyleLayerPart{

	/* public resource fields */

	NhlBoolean	foo;

	/* private resources */

}NhlStyleLayerPart;

typedef struct _NhlStyleLayerRec{
	NhlBaseLayerPart	base;
	NhlStyleLayerPart	style;
}NhlStyleLayerRec;

typedef struct _NhlStyleClassPart {
	char *foo;
}NhlStyleClassPart;

typedef struct _NhlStyleClassRec{
	NhlBaseClassPart	base_class;
	NhlStyleClassPart	style_class;
}NhlStyleClassRec;

typedef struct _NhlStyleClassRec	*NhlStyleClass;
typedef struct _NhlStyleLayerRec	*NhlStyleLayer;

extern NhlStyleClassRec		NhlstyleClassRec;

#endif  /*_NSTYLEP_h*/