
Untitled
By: a guest on
Jun 21st, 2011 | syntax:
C++ | size: 0.35 KB | hits: 56 | expires: Never
#ifndef __PARSE_ARGS_H
#define __PARSE_ARGS_H
#include <string>
#include <iostream>
#include <unistd.h>
#include <stdlib.h>
using namespace std;
extern bool VERBOSE;
extern bool RANDOMIZE;
struct options {
int top;
string single_hash;
string file_loc;
};
options parse_args(int, char**);
#endif