mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
8e98e3727d
dimensions). Added comprehensive tests that include variables with lots of combinations of 0 through 4 fixed and unlimited dimensions.
46 lines
1.5 KiB
C
46 lines
1.5 KiB
C
/*********************************************************************
|
|
* Copyright 1993, University Corporation for Atmospheric Research
|
|
* See netcdf/COPYRIGHT file for copying and redistribution conditions.
|
|
* $Header: /upc/share/CVS/netcdf-3/ncdump/vardata.h,v 1.7 2007/10/08 02:47:57 russ Exp $
|
|
*********************************************************************/
|
|
|
|
extern char *progname; /* for error messages */
|
|
|
|
/* Display for user-defined fill values and default floating-point fill
|
|
values; should match what ncgen looks for in ../ncgen/ncgen.l */
|
|
#define FILL_STRING "_"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Output the data for a single variable, in CDL syntax. */
|
|
extern int vardata ( const ncvar_t*, /* variable */
|
|
size_t [], /* variable dimension lengths */
|
|
int, /* netcdf id */
|
|
int /* variable id */
|
|
);
|
|
|
|
/* Output the data for a single variable, in NcML syntax. */
|
|
extern int vardatax ( const ncvar_t*, /* variable */
|
|
size_t [], /* variable dimension lengths */
|
|
int, /* netcdf id */
|
|
int /* variable id */
|
|
);
|
|
|
|
/* set maximum line length */
|
|
extern void set_max_len ( int len );
|
|
|
|
/* print string with current indent and splitting long lines, if needed */
|
|
extern void lput( const char *string );
|
|
|
|
/* like lput, but with options to support formatting with appended comments */
|
|
extern void lput2( const char *string, bool_t first, bool_t wrap);
|
|
|
|
/* print values of an attribute */
|
|
extern void pr_any_att_vals( const ncatt_t *attp, const void *vals );
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|