Lines Matching defs:envar
3518 ** envar -- the name of the variable to retrieve
3525 getextenv(envar)
3526 const char *envar;
3531 l = strlen(envar);
3534 if (strncmp(*envp, envar, l) == 0 && (*envp)[l] == '=')
3543 ** envar -- the name of the environment variable.
3554 sm_setuserenv(envar, value)
3555 const char *envar;
3564 value = getextenv(envar);
3570 i = strlen(envar) + 1;
3573 (void) sm_strlcpyn(p, l, 3, envar, "=", value);