Skip to content
Snippets Groups Projects
Commit 5a7e3d66 authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

vlist_att.h: added from cdi-pio

parent 1724d6bf
No related branches found
No related tags found
No related merge requests found
......@@ -205,6 +205,7 @@ src/grid.h -text
src/ieg.h -text
src/ieglib.c -text
src/institution.c -text
src/institution.h -text
src/lock.h -text
src/make_cdilib -text
src/make_fint.c -text
......@@ -276,6 +277,7 @@ src/version.c -text
src/vlist.c -text
src/vlist.h -text
src/vlist_att.c -text
src/vlist_att.h -text
src/vlist_var.c -text
src/vlist_var.h -text
src/zaxis.c -text
......
......@@ -113,6 +113,7 @@ libcdi_la_SOURCES = \
vlist.c \
vlist.h \
vlist_att.c \
vlist_att.h \
vlist_var.c \
vlist_var.h \
zaxis.c \
......
......@@ -434,6 +434,7 @@ libcdi_la_SOURCES = \
vlist.c \
vlist.h \
vlist_att.c \
vlist_att.h \
vlist_var.c \
vlist_var.h \
zaxis.c \
......
#ifndef INSTITUTION_H
#define INSTITUTION_H
int
instituteUnpack(void *buf, int size, int *position, int,
MPI_Comm comm);
#endif
/*
* Local Variables:
* c-file-style: "Java"
* c-basic-offset: 2
* indent-tabs-mode: nil
* show-trailing-whitespace: t
* require-trailing-newline: t
* End:
*/
#ifndef VLIST_ATT_H
#define VLIST_ATT_H
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef USE_MPI
#include <mpi.h>
#endif
#ifdef USE_MPI
int
vlistAttsGetSize(vlist_t *p, int varID, MPI_Comm comm);
void
vlistAttsPack(vlist_t *p, int varID,
void * buf, int size, int *position, MPI_Comm comm);
void
vlistAttsUnpack(int vlistID, int varID,
void * buf, int size, int *position, MPI_Comm comm);
#endif
#endif
/*
* Local Variables:
* c-file-style: "Java"
* c-basic-offset: 2
* indent-tabs-mode: nil
* show-trailing-whitespace: t
* require-trailing-newline: t
* End:
*/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment