2006-12-19 23:34:12 +01:00
|
|
|
#include "../git-compat-util.h"
|
2006-01-25 21:38:36 +01:00
|
|
|
|
|
|
|
void gitunsetenv (const char *name)
|
|
|
|
{
|
2013-07-21 21:54:08 +02:00
|
|
|
#if !defined(__MINGW32__)
|
|
|
|
extern char **environ;
|
|
|
|
#endif
|
2006-01-25 21:38:36 +01:00
|
|
|
int src, dst;
|
|
|
|
size_t nmln;
|
|
|
|
|
|
|
|
nmln = strlen(name);
|
|
|
|
|
|
|
|
for (src = dst = 0; environ[src]; ++src) {
|
|
|
|
size_t enln;
|
|
|
|
enln = strlen(environ[src]);
|
|
|
|
if (enln > nmln) {
|
|
|
|
/* might match, and can test for '=' safely */
|
|
|
|
if (0 == strncmp (environ[src], name, nmln)
|
|
|
|
&& '=' == environ[src][nmln])
|
|
|
|
/* matches, so skip */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
environ[dst] = environ[src];
|
|
|
|
++dst;
|
|
|
|
}
|
|
|
|
environ[dst] = NULL;
|
|
|
|
}
|