晚上好!我目前正在为Linux创建可执行文件。但是,在解析可执行文件的选项时,会遇到错误。
我不明白为什么“ -p”选项通过了验证条件。
我的项目的头文件:
# define O_LONG 0x6c // -l
# define O_RECUR 0x52 // -R
# define O_ALL 0x61 // -a
# define O_SORT 0x72 // -r
# define O_R_SORT 0x74 // -t
# define O_MSK_LONG 1
# define O_MSK_REC 2
# define O_MSK_ALL 4
# define O_MSK_SORT 8
# define O_MSK_R_SORT 16
我解析选项的函数:(option
->数字X程序参数,而options
是指向我的结果的指针)
int parse_option(int *options, char *option)
{
char flag;
option++; // To pass the first character -
while ((flag = *(char*)option))
{
if ((O_ALL & flag) == flag)
*options |= O_MSK_ALL;
else if ((O_RECUR & flag) == flag)
*options |= O_MSK_REC;
else if ((O_SORT & flag) == flag)
*options |= O_MSK_SORT;
else if ((flag & O_R_SORT) == flag)
*options |= O_MSK_R_SORT;
else if ((O_LONG & flag) == flag)
*options |= O_MSK_LONG;
else {
printf("command: invalid option -- '%c'\n", flag);
return (-1);
}
printf("%c %i\n", flag, *options);
option++;
}
return (1);
}
答案 0 :(得分:2)
'r'为0x72
,'p'为0x70
,因此如果flag = 0x70
,则flag & O_SORT
= 0x70 & 0x72
= 0x70
= { {1}}。您应该将条件修改为flag
。