* Expand variables in a token. The parsing stops when a token separater * (in most cases, it is a whitespace) is encountered. 'str' is updated to * point to the next character. * * The returned string must be freed when done. */
| 573 | * The returned string must be freed when done. |
| 574 | */ |
| 575 | char *expand_one_token(const char **str) |
| 576 | { |
| 577 | return __expand_string(str, is_end_of_token, 0, NULL); |
| 578 | } |
no test coverage detected