/usr/include/ncarg/ncl/AttSupport.h is in libncarg-dev 6.3.0-13.
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 | /*
* $Id: AttSupport.h,v 1.2 1996-04-23 00:10:09 ethan Exp $
*/
/************************************************************************
* *
* Copyright (C) 1994 *
* University Corporation for Atmospheric Research *
* All Rights Reserved *
* *
************************************************************************/
/*
* File:
*
* Author: Ethan Alpert
* National Center for Atmospheric Research
* PO 3000, Boulder, Colorado
*
* Date: Wed Jul 13 13:51:32 MDT 1994
*
* Description:
*/
#ifndef _AttSupport_h
#define _AttSupport_h
extern struct _NclAttRec * _NclCopyAtt(
#if NhlNeedProto
struct _NclAttRec * /*theattobj*/,
struct _NclAttRec * /*storage*/
#endif
);
extern NhlErrorTypes _NclAddAtt(
#if NhlNeedProto
int /*id*/,
char * /*attname*/,
struct _NclMultiDValDataRec * /*value*/,
NclSelectionRecord * /*sel_ptr*/
#endif
);
extern int _NclIsAtt(
#if NhlNeedProto
int /*id*/,
char * /* name*/
#endif
);
extern struct _NclMultiDValDataRec* _NclGetAtt(
#if NhlNeedProto
int /*id*/,
char * /*attname*/,
NclSelectionRecord * /*sel_ptr*/
#endif
);
extern void _NclDeleteAtt(
#if NhlNeedProto
int /*id*/,
char * /*attname*/
#endif
);
extern void _NclDeleteAttMDID(
#if NhlNeedProto
int /*id*/,
int /*md_id*/
#endif
);
#endif /* _AttSupport_h */
|