| 2239 | // string, placing the value of the last expressions within parameter par. |
| 2240 | |
| 2241 | void GetParameter(CONST char *sz, PAR *ppar) |
| 2242 | { |
| 2243 | CONST char *pch = sz; |
| 2244 | |
| 2245 | do { |
| 2246 | pch = PchGetParameter(pch, ppar, -1, 1, fTrue); |
| 2247 | } while (pch != NULL && *pch != chNull); |
| 2248 | } |
| 2249 | |
| 2250 | |
| 2251 | /* |
no test coverage detected