add: \0 in strcpy strncpy and strcat

This commit is contained in:
2023-07-23 15:00:08 +02:00
parent 357da752fc
commit 1f60f4eab0
4 changed files with 24 additions and 4 deletions

20
tests/strcpy.🗿 Normal file
View 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);
}