gpt4 book ai didi

c - 传递特殊字符作为参数

转载 作者:太空狗 更新时间:2023-10-29 16:05:16 25 4
gpt4 key购买 nike

我需要将十六进制为 00 2C 00 21 的字符串作为我无法执行的命令行参数传递给我的程序。

#include<stdio.h>
int main(int argc,char* argv[]){

// argv[1] should have the string that the above hex represents

//... the program will use that string inside the program

//...also please explain what should i do if i (am/am not) allowed to modify the source

}

因为 00 是 NULL 字符,我无法在命令行中表示它并将它传递给程序。我还需要传递由各种其他字符组成的字符串,这些字符的十六进制值类似于 01 或 02(例如),您不能直接从键盘输入这些字符并将其作为参数传递。

我应该怎么做才能让我的程序接收到十六进制表示为 00 2C 00 21 的字符串。

$./a.out " what should i write here?  " 

最佳答案

你应该让你的程序接受一个带有转义符的字符串,然后自己解析它们。所以它会像这样被调用:

$ ./myprogram '\x00\x2c\x00\x21'

例如(\x 匹配 C 本身使用的内容,因此用户可以熟悉)。单引号是为了保护 shell 中的反斜杠,不是 100% 确定,现在也不是在正确的提示下。

结果不会是字符串,因为 C 中的字符串不能包含 0 个字符。

这是一个例子:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

static size_t decode(void *buf, size_t buf_max, const char *s)
{
unsigned char *put = buf;
unsigned char * const put_max = put + buf_max;
while (*s != '\0' && put != put_max)
{
if (*s == '\\')
{
++s;
if (*s == '\\')
*put++ = *s++;
else if (*s == 'x')
{
++s;
char *endp;
const unsigned long v = strtoul(s, &endp, 16);
if (endp == s)
break;
*put++ = (unsigned char) v;
s = endp;
}
else
break;
}
else
*put++ = *s++;
}
return put - (unsigned char *) buf;
}

int main(int argc, char *argv[])
{
unsigned char buf[32];
const size_t len = decode(buf, sizeof buf, "\\x0hello\\x1\\xaa\\xfe\\xed");
for (size_t i = 0; i < len; ++i)
{
printf("%x\n", buf[i]);
}
return 0;
}

请注意,在您的情况下,main() 中的测试“驱动程序”将被替换,您希望通过例如argv[1]decode()。双反斜杠防止 C 编译器,我们真的希望以包含反斜杠转义的字符串结束。

关于c - 传递特殊字符作为参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56523275/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com