// // misc.cc for marvin_gui in /home/castor/epita/marvin_gui // // Made by C@stor // Login // // Started on Wed Aug 27 21:15:53 2003 C@stor // Last update Tue Sep 9 22:57:11 2003 C@stor // #include #include #include "misc.hh" std::string get_stdin() { std::string answer; std::cin >> answer; return answer; } int max(int a, int b) { if (a > b) return a; return b; }