~ubuntu-branches/ubuntu/vivid/adios/vivid-proposed

« back to all changes in this revision

Viewing changes to src/core/ds_metadata.h

  • Committer: Package Import Robot
  • Author(s): Alastair McKinstry
  • Date: 2014-06-16 23:06:38 UTC
  • mfrom: (15.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20140616230638-cxryhot6b8ge32l6
Tags: 1.7.0-1
* New upstream release.
* Add adios.pc pkgconfig file. adios_config now uses this.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
#define __SPACES_INDEX_H__
16
16
 
17
17
#include <stdint.h>
 
18
#include <stdio.h>
 
19
#include <string.h>
18
20
#include "public/adios_types.h"
19
21
#include "public/adios_read.h"
20
22
 
 
23
#define MAX_DS_NDIM 10
21
24
 
22
25
/* functions currently defined in adios_dataspaces.c and read_dataspaces.c */
23
26
 
52
55
        ,char ** buffer, int *buffer_size, int *nvars, int *nattrs
53
56
        );
54
57
 
 
58
void ds_ints_to_str (int ndim, int *values, char *s);
 
59
void ds_int64s_to_str(int ndim, uint64_t *values, char *s);
 
60
void dimes_ints_to_str (int ndim, int *values, char *s);
 
61
void dimes_int64s_to_str(int ndim, uint64_t *values, char *s);
 
62
 
55
63
/***********************
56
64
  FILE info buffer: 
57
65