this repo has no description
at fixPythonPipStalling 19 lines 411 B view raw
1#ifndef BINARYIO_H 2#define BINARYIO_H 3 4#include <iosfwd> 5#include <string> 6 7class ResType; 8 9void byte(std::ostream& out, int byte); 10void word(std::ostream& out, int word); 11void ostype(std::ostream& out, ResType type); 12void longword(std::ostream& out, int longword); 13 14int byte(std::istream& in); 15int word(std::istream& in); 16ResType ostype(std::istream& in); 17int longword(std::istream& in); 18 19#endif // BINARYIO_H