/usr/include/ncarg/ncl/NclBuiltIns.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 | /*
* $Id: NclBuiltIns.h,v 1.1.24.1 2008-03-28 20:37:49 grubin Exp $
*/
/************************************************************************
* *
* Copyright (C) 1995 *
* University Corporation for Atmospheric Research *
* All Rights Reserved *
* *
************************************************************************/
/*
* File:
*
* Author: Ethan Alpert
* National Center for Atmospheric Research
* PO 3000, Boulder, Colorado
*
* Date: Tue Jan 31 15:17:59 MST 1995
*
* Description:
*/
#ifndef Ncl_BUILTINS_h
#define Ncl_BUILTINS_h
typedef NhlErrorTypes (*NclPubBuiltInFuncWrapper)(
#if NhlNeedProto
void
#endif
);
typedef NhlErrorTypes (*NclPubBuiltInProcWrapper)(
#if NhlNeedProto
void
#endif
);
extern void *NewArgs(
#if NhlNeedProto
int /* n */
#endif
);
extern void SetArgTemplate(
#if NhlNeedProto
void * /*args*/,
int /* arg_num*/,
char * /* type_name*/,
int /* n_dims*/,
ng_size_t * /*dimsizes*/
#endif
);
extern void NclRegisterProc(
#if NhlNeedProto
NclPubBuiltInProcWrapper /* thefuncptr */,
void* /* args */,
char* /* fname*/,
int /* n_args */
#endif
);
extern void NclRegisterFunc(
#if NhlNeedProto
NclPubBuiltInFuncWrapper /* thefuncptr */,
void * /* args */,
char* /* fname*/,
int /* n_args */
#endif
);
#endif /* Ncl_BUILTINS_h */
|