On Thu Apr 27 13:07:07 2023 +0000, Giovanni Mascellani wrote:
I don't completely like this control flow structure. I'd rather have `prepend_input_copy()` call one or more times (as appropriate) another helper (like `prepend_single_input_copy()`), rather than reenter itself to pick a different path.
I don't disagree with adding another helper function for the sake of reducing the function's size, but I'm not sure I see the point of doing it to avoid direct recursion? We're recursing either way...