1 #ifndef STREAMIO_H 2 #define STREAMIO_H 3 #include "phstream.h" 4 #ifdef __cplusplus 5 extern "C" { 6 #endif 7 typedef struct phio_file* phio_fp; 8 void streamio_setup_read(phio_fp* f, grstream grs); 9 void streamio_setup_write(phio_fp* f, rstream rs); 10 #ifdef __cplusplus 11 } 12 #endif 13 #endif 14