mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-21 08:39:46 +08:00
65 lines
1.1 KiB
C
65 lines
1.1 KiB
C
|
/* Copyright 2018-2018 University Corporation for Atmospheric
|
||
|
Research/Unidata. */
|
||
|
|
||
|
/**
|
||
|
* @file This header file contains the common set of headers
|
||
|
* in proper order.
|
||
|
* This header should not be included in
|
||
|
* code outside libzarr.
|
||
|
*
|
||
|
* @author Dennis Heimbigner, Ed Hartnett
|
||
|
*/
|
||
|
|
||
|
#ifndef ZINCLUDES_H
|
||
|
#define ZINCLUDES_H
|
||
|
|
||
|
#include "config.h"
|
||
|
|
||
|
#ifndef __cplusplus
|
||
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdarg.h>
|
||
|
#include <string.h>
|
||
|
#include <malloc.h>
|
||
|
#include <stddef.h> /* size_t, ptrdiff_t */
|
||
|
#include <assert.h>
|
||
|
#ifdef HAVE_UNISTD_H
|
||
|
#include <unistd.h>
|
||
|
#endif
|
||
|
#endif
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include "netcdf.h"
|
||
|
#include "ncdispatch.h"
|
||
|
#include "nc4internal.h"
|
||
|
#include "nc4dispatch.h"
|
||
|
#include "ncuri.h"
|
||
|
#include "nclist.h"
|
||
|
#include "ncbytes.h"
|
||
|
#include "ncauth.h"
|
||
|
#include "nclog.h"
|
||
|
#include "ncrc.h"
|
||
|
#include "ncfilter.h"
|
||
|
|
||
|
#include "zmap.h"
|
||
|
#include "zinternal.h"
|
||
|
#include "zdispatch.h"
|
||
|
#include "zprovenance.h"
|
||
|
#include "zodom.h"
|
||
|
#include "zchunking.h"
|
||
|
#include "zcache.h"
|
||
|
#include "zjson.h"
|
||
|
#include "zarr.h"
|
||
|
#include "zdebug.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* ZINCLUDES_H */
|
||
|
|
||
|
|