www.pudn.com > ASM86_64.rar > option.h


#ifndef _OPTION_H_
#define _OPTION_H_

#define IS_FILE		0x80000000

struct opt_struct {
	char *opt;
	unsigned int has_arg;
};

struct parse_opt {
	int index;
	char *ptr;
};



struct parse_opt parse_option(int i, char **argv, struct opt_struct *opts);


#endif