⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 my_getopt.h

📁 模仿cisco路由器
💻 H
字号:
/*	Copyright (C) 2002, 2003 Slava Astashonok <sla@0n.ru>	This program is free software; you can redistribute it and/or	modify it under the terms of the GNU General Public License.	$Id: my_getopt.h,v 1.1.1.1.2.2 2003/10/10 07:45:10 sla Exp $*/#ifndef _MY_GETOPT_H_#define _MY_GETOPT_H_#define MY_GETOPT_ARG_REQUIRED 0x1#define MY_GETOPT_REQUIRED 0x2#define MY_GETOPT_ALLOW_REPEAT 0x4#define MY_GETOPT_MAX_OPTSTR 4096struct getopt_parms {	char name;	int flag;	int count;	char *arg;};int my_getopt(int argc, char * const argv[], struct getopt_parms parms[]);#endif

⌨️ 快捷键说明

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