stock
#3

if you have defined with stock & you are not using that function in script. compiler will not return any warning/error.
pawn Code:
stock strlower(string[])
{

    for(new i=0; string[i] != EOS; i++)
        string[i] = tolower(string[i]);
    return string;
}
if you are not using stock & you are not using that function in script. compiler will return warning/error.
pawn Code:
strlower(string[])
{

    for(new i=0; string[i] != EOS; i++)
        string[i] = tolower(string[i]);
    return string;
}
that is difference.
Reply


Messages In This Thread
stock - by ATGOggy - 19.01.2015, 11:34
AW: stock - by Saize - 19.01.2015, 11:39
Re: stock - by VishvaJeet - 19.01.2015, 11:41
Re: stock - by Ironboy - 19.01.2015, 11:50
Re: stock - by ATGOggy - 19.01.2015, 11:55
Re: stock - by Vince - 19.01.2015, 11:58

Forum Jump:


Users browsing this thread: 1 Guest(s)