* Expand variables and functions in the given string. Undefined variables * expand to an empty string. * The returned string must be freed when done. */
| 550 | * The returned string must be freed when done. |
| 551 | */ |
| 552 | static char *expand_string_with_args(const char *in, int argc, char *argv[]) |
| 553 | { |
| 554 | return __expand_string(&in, is_end_of_str, argc, argv); |
| 555 | } |
| 556 | |
| 557 | static char *expand_string(const char *in) |
| 558 | { |
no test coverage detected