Imported libSDF into VOID tree

This commit is contained in:
Guilhem Lavaux 2013-02-27 13:27:23 -05:00
parent c6dd08bd7d
commit 2d09cb68df
55 changed files with 12667 additions and 0 deletions

View file

@ -0,0 +1,28 @@
#ifndef _SDFWriteDOTh
#define _SDFWRiteDOTh
#ifdef __cplusplus
extern "C" {
#endif
void SDFwrite(const char *filename, int gnobj, int nobj, const void *btab,
int bsize, const char *bodydesc,
/* const char *name, SDF_type_enum type, <type> val */ ...);
void SDFwrite64(const char *filename, int64_t gnobj, int64_t nobj, const void *btab,
int bsize, const char *bodydesc,
/* const char *name, SDF_type_enum type, <type> val */ ...);
void SDFappend64(const char *filename, int64_t gnobj, int64_t nobj, const void *btab,
int bsize, const char *bodydesc,
/* const char *name, SDF_type_enum type, <type> val */ ...);
/* A trivial special case, just don't write any body data */
void SDFwritehdr(const char *filename, const char *bodydesc,
/* const char *name, SDF_type_enum type, <type> val */ ...);
void SDFunsetwroteheader(void);
void SDFsetwroteheader(void);
#ifdef __cplusplus
}
#endif
#endif