| ANSI Environment Function char *envz_entry(const char *envz, size_t envz_len, const char *name); Internationalization (I18n) Function OverviewThe envz_entryfunction finds the entry inenvzwith the namename, and returns a pointer to the whole entry--that is, theargzelement which begins with name followed by a'='character. If there is no entry with that name, 0 is returned. For more specifics on the argzandenvzfamily of functions, see Argz and Envz vectors in the GNU manual. I18n IssuesThere 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_entryfunction can be used.  Similarly, the return value will then need to be converted from multibyte UTF-8 characters back to wide characters. 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    
 |