netcdf-c/libnczarr/zincludes.h

68 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 <stddef.h> /* size_t, ptrdiff_t */
#include <assert.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#endif
#ifdef _MSC_VER
#include <malloc.h>
#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 "ncindex.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 */