-
Hi, I'm trying to figure out a way to parse a CLI string to generate an array like |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Technically, |
Beta Was this translation helpful? Give feedback.
Technically,
argv
is an array since the beginning of the process (it's one of the arguments passed to themain
function to a C++ program: https://en.cppreference.com/w/cpp/language/main_function).I think it is then split into
process.argv
andprocess.execArgv
in our C++ code, but I don't know exactly where that happens. /cc @addaleax