https://github.com/torvalds/linux
Raw File
Tip revision: 9f737633e6ee54fc174282d49b2559bd2208391d authored by Linus Torvalds on 06 August 2006, 18:20:11 UTC
Linux v2.6.18-rc4
Tip revision: 9f73763
getopt.h
#ifndef _LINUX_GETOPT_H
#define _LINUX_GETOPT_H

struct option {
	const char *name;
	unsigned long flag;
	int val;
};

extern int smb_getopt(char *caller, char **options, struct option *opts,
		      char **optopt, char **optarg, unsigned long *flag,
		      unsigned long *value);

#endif /* _LINUX_GETOPT_H */
back to top