Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- LINE 25130:
- 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;
- }
- LINE 26655:
- cmd = strtok(cmdtext, idx);
- LINE 26715:
- tmp = strtok(cmdtext, idx);
- LINE 26768:
- tmp = strtok(cmdtext, idx);
- LINE 27436:
- tmp = strtok(cmdtext, idx);
- LINE 27495:
- tmp = strtok(cmdtext, idx);
- ALL OTHER LINE ARE THE SAME WITH THESE ABOVE.
Advertisement
Add Comment
Please, Sign In to add comment