On 20 May 2015 at 14:49, Liviu Ionescu <i...@livius.net> wrote: > personally I would add a pointer (cmdline?) in the semihosting > structure and a getter (semihosting_get_cmdline()?). at first call, > the getter would concatenate all args and store the result in the > structure (the concatenate function is there), so that future calls > will get it faster.
Seems worth having the core code provide the "give me commandline as a single string" functionality, certainly. PS: the glib function g_strjoinv("", null_terminated_string_array) is probably better than reimplementing the string-concatenation wheel. -- PMM