1 #ifndef PHSTREAM_EMPTY_H_ 2 #define PHSTREAM_EMPTY_H_ 3 #include<stdio.h> 4 struct RStream; 5 struct GRStream; 6 /** @brief open restart stream for reading*/ 7 FILE* openRStreamRead(RStream* rs); 8 /** @brief open named stream in geom-restart stream for writing*/ 9 FILE* openGRStreamWrite(GRStream* grs, const char* named); 10 #endif 11