#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
int exoid, exoid1, error, idum;
int CPU_word_size, IO_word_size;
float version;
char *cdum = NULL;
CPU_word_size = 0;
IO_word_size = 0;
&CPU_word_size,
&IO_word_size,
&version);
printf("\nafter ex_open\n");
if (exoid < 0) {
exit(1);
}
printf("test.exo is an EXODUSII file; version %4.2f\n", version);
printf(" CPU word size %1d\n", CPU_word_size);
printf(" I/O word size %1d\n", IO_word_size);
printf("EXODUSII API; version %4.2f\n", version);
CPU_word_size = 8;
IO_word_size = 4;
&CPU_word_size,
&IO_word_size);
printf("\nafter ex_create, exoid = %3d\n", exoid1);
if (exoid1 < 0) {
exit(1);
}
printf(" CPU word size %1d\n", CPU_word_size);
printf(" I/O word size %1d\n", IO_word_size);
printf("\nafter ex_copy, error = %3d\n", error);
printf("\nafter ex_close, error = %3d\n", error);
printf("\nafter ex_close, error = %3d\n", error);
return 0;
}
@ EX_ABORT
Definition exodusII.h:392
@ EX_VERBOSE
Definition exodusII.h:390
@ EX_INQ_API_VERS
Definition exodusII.h:145
#define EX_READ
Definition exodusII.h:98
#define EX_CLOBBER
Definition exodusII.h:101
#define ex_create(path, mode, comp_ws, io_ws)
Definition exodusII.h:591
int ex_opts(int options)
Definition ex_opts.c:56
int ex_inquire(int exoid, ex_inquiry req_info, void_int *ret_int, float *ret_float, char *ret_char)
Definition ex_inquire.c:1095
#define ex_open(path, mode, comp_ws, io_ws, version)
Definition exodusII.h:597
int ex_close(int exoid)
Definition ex_close.c:47
int ex_copy(int in_exoid, int out_exoid)
Definition ex_copy.c:151