|
|
| version 1.10, 2012/07/03 08:51:05 | version 1.10.6.5, 2012/07/30 11:49:46 |
|---|---|
| Line 524 io_arrayMake(char * __restrict psArgs, int nargs, cons | Line 524 io_arrayMake(char * __restrict psArgs, int nargs, cons |
| **app ? i++ : i, **app ? app++ : app); | **app ? i++ : i, **app ? app++ : app); |
| return i; | return i; |
| } | } |
| /* | |
| * io_MakeAV() Parse and make attribute/value pair | |
| * | |
| * @csArgs = Input argument line | |
| * @csDelim = Delimiter for separate | |
| * @psAttr = Output Attribute | |
| * @attrLen = Size of attribute array | |
| * @psValue = Output Value, if ==NULL this element not present value or not wanted for return | |
| * @valLen = Size of value array | |
| * return: 0 error format; -1 error:: can`t read; >0 ok, number of readed items | |
| */ | |
| int | |
| io_MakeAV(const char * __restrict csArgs, const char *csDelim, | |
| char * __restrict psAttr, int attrLen, char * __restrict psValue, int valLen) | |
| { | |
| register int ret = 0; | |
| char *pos, *psBuf; | |
| if (!csArgs || !csDelim || !psAttr || !attrLen) | |
| return -1; | |
| if (psValue && !valLen) | |
| return -1; | |
| else | |
| memset(psValue, 0, valLen); | |
| psBuf = io_strdup(csArgs); | |
| if (!psBuf) { | |
| LOGERR; | |
| return -1; | |
| } | |
| pos = strpbrk(psBuf, csDelim); | |
| if (pos) | |
| *pos++ = 0; | |
| ret++; | |
| strlcpy(psAttr, psBuf, attrLen); | |
| if (pos && *pos) { | |
| ret++; | |
| if (psValue) | |
| strlcpy(psValue, pos, valLen); | |
| } | |
| io_free(psBuf); | |
| return ret; | |
| } | |