getopt.h

来自「Linux Kernel 2.6.9 for OMAP1710」· C头文件 代码 · 共 17 行

H
17
字号
#ifndef _LINUX_GETOPT_H#define _LINUX_GETOPT_H#define OPT_NOPARAM	1#define OPT_INT		2#define OPT_STRING	4struct ncp_option {	const char *name;	unsigned int has_arg;	int val;};extern int ncp_getopt(const char *caller, char **options, const struct ncp_option *opts,		      char **optopt, char **optarg, unsigned long *value);#endif /* _LINUX_GETOPT_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?