13.11.2011, 04:30
Help me please :)
13.11.2011, 04:32
Show your #include's... which are on top of script..
This forum requires that you wait 120 seconds between posts. Please try again in 48 seconds.
This forum requires that you wait 120 seconds between posts. Please try again in 48 seconds.
13.11.2011, 04:36
Put this at the bottom of your script.
And #define reason at the top of your script.
Код:
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; }
« Next Oldest | Next Newest »
Users browsing this thread: 1 Guest(s)