我正在研究 bsd 的 libc 中函数 strtok 的代码,当我在我的机器上运行它时,
程序在 SIGSEGV 中接收到信号 s[-1] = 0
这是代码的 link
s[-1] = 0 对吗?

这是我的代码:

#include <stdio.h>
#include <stdlib.h>
#include "strtok.c"

int main(int argc, char* argv[]) {
    char* str = "xxxx xxxyy fdffd";
    const char* s = " ";

    char* token = strtok(str, s);

    while (token != NULL) {
        printf("%s\n", token);
        token = strtok(NULL, s);
    }

    return 0;
}

最佳答案

s[-1]

扩展为:
*( s - 1 )

因此,如果结果指向有效内存,则代码被定义。

关于c - s[-1] = 0 是什么意思?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21341763/

10-15 03:12