This file is indexed.

/usr/include/ncarg/hlu/AppP.h is in libncarg-dev 6.2.0-3+b1.

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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
 *      $Id: AppP.h,v 1.8 1997-02-27 20:13:00 boote Exp $
 */
/************************************************************************
*									*
*			     Copyright (C)  1994			*
*	     University Corporation for Atmospheric Research		*
*			     All Rights Reserved			*
*									*
************************************************************************/
/*
 *	File:		AppP.h
 *
 *	Author:		Jeff W. Boote
 *			National Center for Atmospheric Research
 *			PO 3000, Boulder, Colorado
 *
 *	Date:		Fri Jul 29 12:33:46 MDT 1994
 *
 *	Description:	
 */
#ifndef _NAppP_h
#define _NAppP_h

#include <ncarg/hlu/BaseP.h>
#include <ncarg/hlu/AppI.h>
#include <ncarg/hlu/ResourcesP.h>

typedef struct _NhlAppLayerRec *NhlAppLayer;
typedef struct _NhlAppClassRec *NhlAppClass;

typedef struct _NhlAppLayerPart {
	/* public resource fields */
	NhlString	usr_appdir;
	NhlString	sys_appdir;
	NhlString	file_suffix;

	/* post-resdb resources */
	NhlBoolean	default_parent;
	NhlGenArray	resources;

	/* private fields */
	NhlPointer	res_strings;
	NhlPointer	clineopts;
	int		*argc_in_out;
	NhlString	*argv_in_out;
	_NhlC_OR_F	init_mode;
	NhlBoolean	default_app;
	NhlBoolean	no_appDB;
	NrmDatabase	appDB;

	NhlString	*values;
	NrmResourceList	res;
	int		nres;

	_NhlArgList	args;
	int		nargs;
} NhlAppLayerPart;

typedef struct _NhlAppLayerRec {
	NhlBaseLayerPart	base;
	NhlAppLayerPart		app;
} NhlAppLayerRec;

typedef struct _NhlAppTableRec NhlAppTableRec, *NhlAppTable;
struct _NhlAppTableRec{
	NhlAppLayer	app;
	NhlAppTable	next;
};

typedef struct _NhlAppClassPart {
	NhlResourceList		resources;
	int			num_resources;
	NhlAppLayer		default_app;
	NhlAppLayer		current_app;
	NrmDatabase		baseDB;
	int			error_id;
	int			workspace_id;
	NhlAppTable		app_objs;	/* except default_app */
	NhlPointer		default_guidata;
} NhlAppClassPart;

typedef struct _NhlAppClassRec {
	NhlBaseClassPart	base_class;
	NhlAppClassPart		app_class;
} NhlAppClassRec;

extern NhlAppClassRec NhlappClassRec;

#endif /* _NAppP_h */