forked from starnakin/IronGOLEM
add: realloc
This commit is contained in:
11
tests/reallocarray.🗿
Normal file
11
tests/reallocarray.🗿
Normal file
@ -0,0 +1,11 @@
|
||||
main()
|
||||
{
|
||||
local tmp;
|
||||
name = "reallocarray";
|
||||
|
||||
tmp = strdup("yo");
|
||||
if (tmp == NULL)
|
||||
return 1;
|
||||
tmp = reallocarray(tmp, strlen(tmp), 5);
|
||||
test_str(tmp, "yo", "");
|
||||
}
|
Reference in New Issue
Block a user