Revision 07342d623b8e1ac9501a36a0da55cbce1117aeaf authored by Linus Torvalds on 06 May 2005, 23:46:40 UTC, committed by Linus Torvalds on 06 May 2005, 23:46:40 UTC
2 parent s d4a1a73 + e4862fe
Raw File
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