gpt4 book ai didi

substring - Mips中的子串

转载 作者:行者123 更新时间:2023-12-02 04:12:00 25 4
gpt4 key购买 nike

如何在Mips中获取字符串的子字符串?

最佳答案

只需获取一个交叉编译器,用C对其进行编码并获得输出程序集。如果使用gcc,则可以使用-S选项。

例如:

根@:〜/ stackoverflow#cat strstr.c

    #include <string.h>

/*
* Find the first occurrence of find in s.
*/
char *
strstr(const char *s, const char *find)
{
char c, sc;
size_t len;


if ((c = *find++) != 0) {
len = strlen(find);
do {
do {
if ((sc = *s++) == 0)
return (NULL);
} while (sc != c);
} while (strncmp(s, find, len) != 0);
s--;
}
return (s);
}

root @:〜/ stackoverflow#gcc -S -mrnames
strstr.c -o strstr.s
    strstr.c: In function `strstr':
strstr.c:23: warning: return discards qualifiers from pointer target type

根@:〜/ stackoverflow#

关于substring - Mips中的子串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4578747/

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