Tagged Questions
0
votes
4answers
1k views
Convert std::vector<char*> to a c-style argument vector arv
I would like to prepare an old-school argument vector (argv) to use within the function
int execve(const char *filename, char
*const argv[],char *const envp[]);
I tried it with the ...