Advertisement
Guest User

Untitled

a guest
Jun 21st, 2011
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.35 KB | None | 0 0
  1.  
  2.  
  3.  
  4. #ifndef __PARSE_ARGS_H
  5. #define __PARSE_ARGS_H
  6.  
  7.  
  8. #include <string>
  9. #include <iostream>
  10. #include <unistd.h>
  11. #include <stdlib.h>
  12.  
  13. using namespace std;
  14.  
  15. extern bool VERBOSE;
  16. extern bool RANDOMIZE;
  17.  
  18. struct options {
  19.  
  20.      int top;
  21.      string single_hash;
  22.      string file_loc;
  23.      
  24. };
  25.  
  26. options parse_args(int, char**);
  27.  
  28.  
  29. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement