1*ab645d52SCameron Smith #ifndef SYNCIO_H 2*ab645d52SCameron Smith #define SYNCIO_H 3*ab645d52SCameron Smith #ifdef __cplusplus 4*ab645d52SCameron Smith extern "C" { 5*ab645d52SCameron Smith #endif 6*ab645d52SCameron Smith typedef struct phio_file* phio_fp; 7*ab645d52SCameron Smith void syncio_setup_read(int nfiles, phio_fp* f); 8*ab645d52SCameron Smith void syncio_setup_write(int nfiles, int nfields, int nppf, phio_fp* f); 9*ab645d52SCameron Smith #ifdef __cplusplus 10*ab645d52SCameron Smith } 11*ab645d52SCameron Smith #endif 12*ab645d52SCameron Smith #endif 13