MCPcopy Create free account
hub / github.com/Entware/Entware / expand_string_with_args

Function expand_string_with_args

scripts/config/preprocess.c:552–555  ·  view source on GitHub ↗

* Expand variables and functions in the given string. Undefined variables * expand to an empty string. * The returned string must be freed when done. */

Source from the content-addressed store, hash-verified

550 * The returned string must be freed when done.
551 */
552static 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
557static char *expand_string(const char *in)
558{

Callers 3

variable_expandFunction · 0.85
eval_clauseFunction · 0.85
expand_stringFunction · 0.85

Calls 1

__expand_stringFunction · 0.85

Tested by

no test coverage detected