Una Mini Modificacion Que No Puedo hacer
#6

Es por que ya tienes definido el strtok

Busca esto

y borra

strtok(const string[], &index)
{
new length = strlen(string);
while ((index < length) && (string[index] <= ' '))
{
index++;
}

new offset = index;
new result[20];
while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string[index];
index++;
}
result[index - offset] = EOS;
return result;
}
Reply


Messages In This Thread
Una Mini Modificacion Que No Puedo hacer - by JavAndroid - 12.12.2014, 22:22
Respuesta: Una Mini Modificacion Que No Puedo hacer - by PolloLoko - 12.12.2014, 23:12
Re: Una Mini Modificacion Que No Puedo hacer - by JavAndroid - 12.12.2014, 23:15
Respuesta: Una Mini Modificacion Que No Puedo hacer - by PolloLoko - 13.12.2014, 00:58
Re: Una Mini Modificacion Que No Puedo hacer - by JavAndroid - 13.12.2014, 13:26
Respuesta: Una Mini Modificacion Que No Puedo hacer - by Alvaro89 - 13.12.2014, 13:31
Re: Una Mini Modificacion Que No Puedo hacer - by JavAndroid - 13.12.2014, 13:35

Forum Jump:


Users browsing this thread: 1 Guest(s)