Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 21st, 2011  |  syntax: C++  |  size: 0.35 KB  |  hits: 56  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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