search for: arg_len

Displaying 1 result from an estimated 1 matches for "arg_len".

Did you mean: args_len
2009 Sep 11
2
[PATCH] Add echo_daemon command
...argv) +{ + char *out = NULL; + size_t out_len = 0; + + /* Iterate over argv entries until reaching the NULL terminator */ + while (*argv) { + char add_space = 0; + + /* Store the end of current output */ + size_t out_end = out_len; + + /* Calculate the new output size */ + size_t arg_len = strlen(*argv); + out_len += arg_len; + + /* We will prepend a space if this isn't the first argument added */ + if (NULL != out) { + out_len++; + add_space = 1; + } + + /* Make the output buffer big enough for the string and its terminator */ + out = realloc (out,...