DragonOsman

cust_std_lib_facilities.h

Sep 19th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #ifndef CUST_STD_LIB_FACILITIES_H
  2. #define CUST_STD_LIB_FACILITIES_H
  3.  
  4. #include <iostream>
  5. #include <string>
  6.  
  7. int randint(int min, int max);
  8. void error(const std::string& s, const std::string& s2);
  9. void error(const std::string& s);
  10. void keep_window_open();
  11. void keep_window_open(std::string s);
  12.  
  13. #endif
Add Comment
Please, Sign In to add comment