ANSI Environment Function
error_t envz_merge(char **envz, size_t *envz_len, const char *envz2, size_t envz2_len, int override);
Internationalization (I18n) Function Overview
The envz_merge function adds each entry in envz2 to envz , as if with envz_add , updating *envz and *envz_len . If override is true, then values in envz2 will supersede those with the same name in envz , otherwise not.
For more specifics on the argz and envz family of functions, see Argz and Envz vectors in the GNU manual.
I18n Issues
There is no ANSI wide character version of this function. The parameters will have to be converted to multibyte UTF-8 characters and then the envz_merge function can be used.
Recommended Replacements*
*If you're already using the recommended function, see I18n Issues for other reasons why Globalyzer is detecting the function.
ANSI Environment and Command Line Argument Functions
|