分段错误(核心已转储)- strlcpy 函数 C

Segmentation fault (core dumped) - strlcpy function C

我一直在构建一些基本的 C 函数,但我还是不太有经验。

编写 strlcpy 函数时,我不断收到 Segmentation fault (core dumped) 错误。认为它可能与 NUL 终止字符串有关,但在 运行.

时我一直收到错误消息

任何帮助将不胜感激,在此先感谢。

#include <string.h>
#include <stdio.h>
#include <bsd/string.h>

unsigned int    ft_strlcpy(char *dst, char *src, unsigned int size)
{
    unsigned int i;
    unsigned int j;

    j = 0;
    while (src[j] != '[=10=]')
        j++;
    
    if (size == 0)
        return (j);

    i = 0;
    while (i < (size - 1) && src[i] != '[=10=]')
    {
        dst[i] = src[i];
        i++;
    }
    dst[i] = '[=10=]';
    return (j);
}

int main()
{
    char *str;

    str = "byes";
    str[3] = '[=10=]';
    printf("%s", str);
    printf("%u", ft_strlcpy("hello", str, 5));
    return (0);
}

更正功能以备不时之需

unsigned int    ft_strlcpy(char *dst, char *src, unsigned int size)
{
    unsigned int i;
    unsigned int j;

    j = 0;
    while (src[j] != '[=11=]')
        j++;
    
    if (size == 0)
        return (j);

    i = 0;
    while (i < (size - 1) && src[i] != '[=11=]')
    {
        dst[i] = src[i];
        i++;
    }
    dst[i] = '[=11=]';
    return (j);
}

int main()
{
    char str[] = "byes";
    char dest[] = "hello";

    printf("%s\n", str);
    printf("%u\n", ft_strlcpy(dest, str, 5));
    printf("%s\n", dest);

    return (0);
}

应该return:

byes
4
byes

您声明了一个指向字符串文字的指针

char *str;

str = "byes";

不能更改字符串文字。但是您正在尝试更改指向的字符串文字

str[3] = '[=11=]';

这会导致未定义的行为。

删除这条语句。字符串文字已经包含索引等于 4 处的终止零。

也在这次通话中

printf("%u", ft_strlcpy("hello", str, 5));

您再次尝试使用函数 ft_strlcpy 更改字符串文字。在这种情况下,它是字符串文字 "hello".

声明一个字符数组,例如

char dsn[] = "hello";

并将其作为参数传递给函数

printf("%u", ft_strlcpy( dsn, str, sizeof( dsn )));