This file is indexed.

/usr/include/ncarg/ncl/NclData.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
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
/*
 *      $Id: NclData.h,v 1.14 2008-12-10 20:12:16 dbrown Exp $
 */
/************************************************************************
*									*
*			     Copyright (C)  1993			*
*	     University Corporation for Atmospheric Research		*
*			     All Rights Reserved			*
*									*
************************************************************************/
/*
 *	File:		
 *
 *	Author:		Ethan Alpert
 *			National Center for Atmospheric Research
 *			PO 3000, Boulder, Colorado
 *
 *	Date:		Fri Oct 29 14:00:51 MDT 1993
 *
 *	Description:	
 */
#ifndef NclData_h
#define NclData_h

#include "NclDataDefs.h"
#ifdef NIO_LIB_ONLY
#include "nioCallbacks.h"
#else
#include <ncarg/hlu/Callbacks.h>
#endif

typedef NhlErrorTypes (*NclDelParentFunction) (
#if NhlNeedProto
struct _NclObjRec *     /*theobj*/,
struct _NclObjRec * 	/*parent*/
#endif
);

typedef NhlErrorTypes (*NclAddParentFunction) (
#if NhlNeedProto
struct _NclObjRec *     /*theobj*/,
struct _NclObjRec *	/*parent*/
#endif
);

#define CREATED		01
#define DESTROYED	02
#define MODIFIED	04
#define MISSINGNOTIFY	3
#define HLUDESTROYED	5
#define ATTDESTROYED	6
#define COORDDESTROYED	7
#define HLUVALCHANGE	8


typedef struct _NclObjPart {
	struct _NclObjRec*	self;
	struct _NclObjClassRec *class_ptr;
	NclObjTypes obj_type;
	unsigned int obj_type_mask; /* some kind of bit mask to id object*/
	int	storage; /* tag to determine whether object belongs to a symbol or is expression result */
	int id;
	int is_constant;
	NclStatus   status;
	NclRefList                      *parents;
	int 	ref_count;
	 _NhlCBList                      cblist;
} NclObjPart;

typedef struct _NclObjRec {
	NclObjPart	obj;
}NclObjRec;



typedef void (*NclGenericFunction)(
#if	NhlNeedProto
NclObj	/*self*/
#endif
);


typedef NhlErrorTypes (*NclInitPartFunction)(
#if	NhlNeedProto
NclObjClass	/*self*/
#endif
);

typedef NhlErrorTypes (*NclInitClassFunction)(
#if	NhlNeedProto
void
#endif
);

typedef int (*NclSetStatusFunction)(
#if	NhlNeedProto
NclObj	/*self*/,
NclStatus /*requested*/
#endif
);

typedef NhlErrorTypes (*NclPrintSummaryFunction)
                      (NclObj obj, FILE	*fp);

typedef NhlErrorTypes (*NclPrintFunction)(
#if	NhlNeedProto
NclObj /*self*/,
FILE	*		/*fp*/
#endif
);
typedef struct _NclDataRec *(*NclCopyFunction)(
#if	NhlNeedProto
	struct _NclDataRec * /*self*/,
	NclScalar * /*new_missing*/
#endif
);

typedef NhlErrorTypes (*NclCallBack)(
#if	NhlNeedProto
void* 	/*obj_ref*/, /*   */
void*	/*user_data*/
#endif
);

typedef struct _NclCallBackList {
	NclCallBack	func;
	void*		user_data;
	struct _NclCallBackList *next;
}NclCallBackList;

typedef void *(*NclObtainCallDataFunc)(
#if NhlNeedProto
NclObj	/* obj */,
unsigned int /* type */
#endif
);

typedef struct _NclObjClassPart {	
	char 	*class_name;
	unsigned int obj_size;
	struct _NclObjClassRec *super_class;
	int	inited;
	
	NclGenericFunction	destroy;
	NclSetStatusFunction	set_status;
	NclInitPartFunction	initialize_part;
	NclInitClassFunction	initialize_class;

        NclAddParentFunction            add_parent;
        NclDelParentFunction            del_parent;
	NclPrintSummaryFunction print_summary;
	NclPrintFunction        print;
	NclCallBackList		*create_callback;
	NclCallBackList		*delete_callback;
	NclCallBackList		*modify_callback;
	NclObtainCallDataFunc	obtain_calldata;
}NclObjClassPart;

typedef struct _NclObjClassRec{
	NclObjClassPart	obj_class;
}NclObjClassRec;

typedef struct _NclDataPart {
	unsigned int data_type_mask; /* diffent from obj_type_mask which only
					has entries for obj's class heirarchy,
					This field communicates what type the
					object wants to be perceived as with
					respect to data operations.  Variables
					fill this in with the type of their 
					value field's obj_type and the variable
					mask*/  

}NclDataPart;

typedef struct _NclDataRec {
	NclObjPart      obj;
	NclDataPart	data;
}NclDataRec;


typedef struct _NclDataRec *(*NclSingleOperatorFunction)(
#if	NhlNeedProto
	NclData	/*self*/,
	NclData 	/*result*/
#endif
);

typedef void (*NclResetMissingValueFunction) (
#if	NhlNeedProto
	NclData	/*self*/,
	NclScalar * /*missing*/
#endif
);

typedef struct _NclDataRec *(*NclOperatorFunction)(
#if	NhlNeedProto
	NclData	/*self*/,
	NclData 	/*other*/,
	NclData	/*result*/
#endif
);
typedef struct _NclDataRec *(*NclCoerceFunction)(
#if	NhlNeedProto
	NclData	/*self*/,
	NclObjTypes 		/*coerce_to_obj*/,
	NclScalar *		/* new_missing*/
#endif
);
typedef struct _NclDataRec *(*NclReadSubSecFunction)(
#if	NhlNeedProto
	NclData	/*self*/,
	struct _NclSelectionRecord * /*selection*/,
	NclScalar* /*missing*/
#endif
);

typedef NhlErrorTypes (*NclReadThenWriteFunc)(
#if	NhlNeedProto
	NclData /*to_data*/,
	struct _NclSelectionRecord* /*to_selctions*/,
	NclData /*from_data*/,
	struct _NclSelectionRecord* /*from_selection*/
#endif
);

typedef NhlErrorTypes (*NclWriteSubSecFunction)(
#if	NhlNeedProto
	NclData	/*self*/,
	struct _NclSelectionRecord * /*selection*/,
	NclData 	/*value*/
#endif
);

typedef int (*NclIsMissingFunction) (
#if	NhlNeedProto
	NclData /*self*/,
	void *v_one
#endif
);

typedef int (*NclScalarFindFunction)(
#if 	NhlNeedProto
	NclData /*self*/,
	void * /*value*/
#endif
);

typedef int (*NclMonotonicTestFunction)(
#if	NhlNeedProto
	NclData /*self*/
#endif
);


typedef struct _NclDataClassPart {
	NclCopyFunction		dup;
	NclResetMissingValueFunction 	reset_mis;
	NclReadSubSecFunction   r_subsection;
	NclWriteSubSecFunction  w_subsection[2];
	NclReadThenWriteFunc 	r_then_w_subsection;
	NclCoerceFunction  	coerce[2];
	NclOperatorFunction	multiply[4];
	NclOperatorFunction	plus[4];
	NclOperatorFunction	minus[4];
	NclOperatorFunction	divide[4];	
	NclOperatorFunction	exponent[4];
	NclOperatorFunction	mod[4];
	NclOperatorFunction	mat[4];
	NclOperatorFunction	sel_lt[4];
	NclOperatorFunction	sel_gt[4];
	NclSingleOperatorFunction	ncl_not[2];
	NclSingleOperatorFunction	neg[2];
	NclOperatorFunction	gt[4];
	NclOperatorFunction	lt[4];
	NclOperatorFunction	ge[4];
	NclOperatorFunction	le[4];
	NclOperatorFunction	ne[4];
	NclOperatorFunction	eq[4];
	NclOperatorFunction	ncl_and[4];
	NclOperatorFunction	ncl_or[4];
	NclOperatorFunction	ncl_xor[4];
	NclIsMissingFunction	is_mis;
} NclDataClassPart;
 
typedef struct _NclDataClassRec{
	NclObjClassPart	obj_class;
	NclDataClassPart data_class;
}NclDataClassRec;

typedef NclDataClassRec *NclDataClass;

extern NclObjClass nclObjClass;
extern NclObjClass nclDataClass;

extern NclObjClassRec nclObjClassRec;
extern NclDataClassRec nclDataClassRec;

extern NhlErrorTypes _NclInitClass(
#if     NhlNeedProto
	NclObjClass	/* oc */
#endif
);
extern void _NclDestroyObj(
#if	NhlNeedProto
	NclObj	/*obj*/
#endif
);
extern int _NclSizeOf(
#if     NhlNeedProto
NclBasicDataTypes /*data_type*/
#endif
);

extern int _NclSetStatus(
#if 	NhlNeedProto
NclObj	/* obj */,
NclStatus /* requested*/
#endif
);

extern struct _NclObjRec * _NclObjCreate(
#if	NhlNeedProto
NclObj	/* inst */,
NclObjClass /* theclass */,
NclObjTypes /* obj_type */,
unsigned int /* obj_type_mask*/,
NclStatus /* status */
#endif
);
extern struct _NclDataRec * _NclDataCreate(
#if	NhlNeedProto
NclObj	/* inst */,
NclObjClass /* theclass */,
NclObjTypes /* obj_type */,
unsigned int /* obj_type_mask*/,
NclStatus /* status */
#endif
);

extern struct _NclObjRec *_NclGetObj(
#if  NhlNeedProto
int /*id*/
#endif
);
extern void _NclNumGetObjCals(
#if NhlNeedProto
FILE *fp
#endif
);
extern int _NclRegisterObj(
#if	NhlNeedProto
NclObj /*self*/
#endif
);
extern void _NclUnRegisterObj(
#if	NhlNeedProto
NclObj /*self*/
#endif
);

extern int _NclNumObjs(
#if     NhlNeedProto
void
#endif
);

extern void _NclObjsSize(
#if NhlNeedProto
FILE *fp
#endif
);

extern void _NclPrintUnfreedObjs(
#if     NhlNeedProto
FILE * /*fp*/
#endif
);


#endif /* NclData_h */