|
|
| version 1.4, 2011/02/10 22:01:34 | version 1.5, 2011/03/16 16:44:52 |
|---|---|
| Line 138 io_MakeArray(char * __restrict psArgs, const char *csD | Line 138 io_MakeArray(char * __restrict psArgs, const char *csD |
| } else | } else |
| memset(*args, 0, sizeof(char*) * nargs); | memset(*args, 0, sizeof(char*) * nargs); |
| for (i = 0, app = *args; app < *args + nargs && (*app = strsep(&psArgs, csDelim)); | for (i = 0, app = *args; app < *args + nargs && (*app = strsep((char **) &psArgs, csDelim)); |
| **app ? i++ : i, **app ? app++ : app); | **app ? i++ : i, **app ? app++ : app); |
| return i; | return i; |
| } | } |