Warning ayuda
#4

Quote:
Originally Posted by dis77urbio
Посмотреть сообщение
borra esto de tu gm:

pawn Код:
stock strtok(const string[], &index,seperator=' ')
{
    new length = strlen(string);
    new offset = index;
    new result[MAX_STRING];
    while ((index < length) && (string[index] != seperator) && ((index - offset) < (sizeof(result) - 1)))
    {
        result[index - offset] = string[index];
        index++;
    }

    result[index - offset] = EOS;
    if ((index < length) && (string[index] == seperator))
    {
        index++;
    }
    return result;
}
no hace falta borrarlo con ponerle "stock" al principio de la funcion el compilador no lo toma en cuenta si se esta usando o no
Reply


Messages In This Thread
Warning ayuda - by chucho - 06.09.2011, 19:34
Respuesta: Warning ayuda - by TheChaoz - 06.09.2011, 19:38
Re: Warning ayuda - by dis77urbio - 06.09.2011, 19:49
Respuesta: Re: Warning ayuda - by Daniel-92 - 06.09.2011, 19:53
Re: Respuesta: Re: Warning ayuda - by dis77urbio - 06.09.2011, 19:55
Re: Warning ayuda - by Code8976Man - 06.09.2011, 20:11
Re: Warning ayuda - by dis77urbio - 06.09.2011, 21:00
Re: Warning ayuda - by Code8976Man - 06.09.2011, 21:32
Respuesta: Warning ayuda - by chucho - 06.09.2011, 22:56
Re: Respuesta: Warning ayuda - by dis77urbio - 07.09.2011, 05:26

Forum Jump:


Users browsing this thread: 4 Guest(s)