forked from starnakin/IronGOLEM
add: \0 in strcpy strncpy and strcat
This commit is contained in:
parent
357da752fc
commit
1f60f4eab0
@ -9,9 +9,9 @@ strcat(dst, src)
|
|||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
loop {
|
loop {
|
||||||
|
[dst + i + j] = [src + j];
|
||||||
if ([src + j] == 0)
|
if ([src + j] == 0)
|
||||||
return (dst);
|
return (dst);
|
||||||
[dst + i + j] = [src + j];
|
|
||||||
j++;
|
j++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,9 +3,9 @@ strcpy(dst, src)
|
|||||||
local i = 0;
|
local i = 0;
|
||||||
|
|
||||||
loop {
|
loop {
|
||||||
|
[dst + i] = [src + i];
|
||||||
if ([src + i] == 0)
|
if ([src + i] == 0)
|
||||||
return (dst);
|
return (dst);
|
||||||
[dst + i] = [src + i];
|
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,9 +3,9 @@ strncpy(dst, src, size)
|
|||||||
local i = 0;
|
local i = 0;
|
||||||
|
|
||||||
loop {
|
loop {
|
||||||
if ([src + i] == 0 | i == size)
|
|
||||||
return (dst);
|
|
||||||
[dst + i] = [src + i];
|
[dst + i] = [src + i];
|
||||||
|
if ([src + i] == 0 | i + 1 >= size)
|
||||||
|
return (dst);
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
20
tests/strcpy.🗿
Normal file
20
tests/strcpy.🗿
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
main()
|
||||||
|
{
|
||||||
|
local str;
|
||||||
|
|
||||||
|
name = "strcpy";
|
||||||
|
|
||||||
|
str = galloc(10);
|
||||||
|
|
||||||
|
strcpy(str, "yo");
|
||||||
|
test_str(str, "yo", "");
|
||||||
|
|
||||||
|
strcpy(str, "");
|
||||||
|
test_str(str, "", "");
|
||||||
|
|
||||||
|
strcpy(str, "bonjorsss");
|
||||||
|
strcpy(str, "bonjour");
|
||||||
|
test_str(str, "bonjour", "set last \0");
|
||||||
|
|
||||||
|
free(str);
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user