memset(tab, size, value)
{
local i = 0;
loop {
if (i == size)
return (tab);
[tab + i] = value;
i = i + 1;
}