50 path_name = (
char *) calloc(*len_value+1,
sizeof (
char));
53 char env_string[10192];
57 strcat_s(env_string,len,variable);
58 strcat_s(env_string,len,
"=");
59 strcat_s(env_string,len,value);
63 strncpy(path_name,value, *len_value);
64 result=setenv(variable,path_name,1);