xref: /phasta/phSolver/common/streamio.h (revision cc72a73fd2b79f4dd0a850fa4af718cd73554811)
1 #ifndef STREAMIO_H
2 #define STREAMIO_H
3 #include "phstream.h"
4 #include "phIO.h"
5 #ifdef __cplusplus
6 extern "C" {
7 #endif
8 void streamio_setup_read(phio_fp* f, grstream grs);
9 void streamio_setup_write(phio_fp* f, rstream rs);
10 void streamio_set_gr(grstream grs);
11 grstream streamio_get_gr();
12 void streamio_set_r(rstream rs);
13 rstream streamio_get_r();
14 #ifdef __cplusplus
15 }
16 #endif
17 #endif
18