C语言命令行解析函数:getopt/getopt_long
摘要:
命令行工具下的参数选项有两种,长选项和短选项。短选项以-开头,后面跟单个字母;长选项以--开头,后面可跟多个字母。 一. getopt() 1.功能:解析命令行短选项参数 2.函数原型: getopt.h中声明的几个外部变量:extern char *optarg; extern int optin 阅读全文
posted @ 2018-05-28 23:35 Hello-World3 阅读(1547) 评论(0) 推荐(0) 编辑