19.01.2015, 11:34
What's the difference between this:
and this:
What does the stock do?
Also, should I use stock?
PHP Code:
stock strlower(string[])
{
for(new i=0; string[i] != EOS; i++)
string[i] = tolower(string[i]);
return string;
}
PHP Code:
strlower(string[])
{
for(new i=0; string[i] != EOS; i++)
string[i] = tolower(string[i]);
return string;
}
Also, should I use stock?