Home | History | Annotate | Download | only in stdlib

Lines Matching full:value

40  *	Set the value of the environmental variable "name" to be
41 * "value". If rewrite is set, replace any current value.
44 setenv(const char *name, const char *value, int rewrite)
46 static char **lastenv; /* last value of environ */
50 if (*value == '=') /* no `=' in value */
51 ++value;
52 l_value = strlen(value);
57 while ((*C++ = *value++))
79 if (!(environ[offset] = /* name + `=' + value */
84 for (*C++ = '='; (*C++ = *value++); )