Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • b383306/libcdi
  • mpim-sw/libcdi
  • m214007/libcdi
3 results
Show changes
Commits on Source (3)
......@@ -3,7 +3,9 @@
#endif
#ifdef HAVE_LIBNETCDF
#include "dmemory.h"
#include "stream_cdf.h"
#include "cdf_int.h"
#include "cdf_lazy_grid.h"
static struct gridVirtTable cdfLazyGridVtable;
......
......@@ -19,8 +19,6 @@
#include <string.h>
#include "dmemory.h"
#include "cdf_int.h"
#include "grid.h"
struct xyValGet
......
......@@ -15,7 +15,6 @@
#include "stream_cdf.h"
#include "cdf_int.h"
#include "vlist.h"
#include "vlist_var.h"
static void
cdfReadGridTraj(stream_t *streamptr, int gridID)
......
......@@ -13,7 +13,6 @@
#include <string.h>
#include <ctype.h>
#include "dmemory.h"
#include "cdi.h"
#include "cdi_int.h"
#include "cdf_util.h"
......
#ifndef CDF_UTIL_H_
#define CDF_UTIL_H_
#include <stdlib.h>
#include <stdbool.h>
bool xtypeIsText(int xtype);
......
......@@ -13,7 +13,6 @@
#include "cdf.h"
#include "cdf_int.h"
#include "vlist.h"
#include "vlist_var.h"
void
cdfDefVarDeflate(int ncid, int ncvarID, int shuffle, int compLevel)
......
......@@ -2,7 +2,9 @@
#include "config.h"
#endif
#ifndef _WIN32
#include <unistd.h>
#endif
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
......
......@@ -5,6 +5,8 @@
#include "config.h"
#endif
#include <stdlib.h>
enum
{
EXT_REAL = 1,
......
......@@ -11,7 +11,6 @@
* next to find out what happened */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
......
#ifndef _IEG_H
#define _IEG_H
#include <stdlib.h>
// clang-format off
/* Level Types */
......
......@@ -11,7 +11,6 @@
* next to find out what happened */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
......
......@@ -15,7 +15,6 @@
#include <limits.h>
#include "cdi.h"
#include "cdi_int.h"
#include "resource_handle.h"
#include "resource_unpack.h"
#include "namespace.h"
......
#ifndef _SERVICE_H
#define _SERVICE_H
#include <stdlib.h>
typedef struct
{
int checked;
......
......@@ -11,7 +11,6 @@
* next to find out what happened */
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <ctype.h>
......
......@@ -10,10 +10,8 @@
#include "cdi.h"
#include "cdi_int.h"
#include "dmemory.h"
#include "stream_cdf.h"
#include "cdf_int.h"
#include "vlist.h"
static int
cdfDefTimeBounds(int fileID, int nctimevarid, int nctimedimid, const char *taxis_name, taxis_t *taxis)
......