2013-01-28 04:34:58 +01:00
|
|
|
/*-
|
2013-03-10 16:15:23 +01:00
|
|
|
* Free/Libre Near Field Communication (NFC) library
|
2013-01-28 04:34:58 +01:00
|
|
|
*
|
2013-03-10 16:15:23 +01:00
|
|
|
* Libnfc historical contributors:
|
|
|
|
* Copyright (C) 2009 Roel Verdult
|
|
|
|
* Copyright (C) 2009-2013 Romuald Conty
|
|
|
|
* Copyright (C) 2010-2012 Romain Tartière
|
|
|
|
* Copyright (C) 2010-2013 Philippe Teuwen
|
|
|
|
* Copyright (C) 2012-2013 Ludovic Rousseau
|
2013-07-17 13:57:56 +02:00
|
|
|
* See AUTHORS file for a more comprehensive list of contributors.
|
2013-03-10 16:15:23 +01:00
|
|
|
* Additional contributors of this file:
|
|
|
|
* Copyright (C) 2013 Alex Lian
|
2013-01-28 04:34:58 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU Lesser General Public License as published by the
|
|
|
|
* Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
* option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2013-01-31 16:09:41 +01:00
|
|
|
* @file stdlib.c
|
2013-01-28 04:34:58 +01:00
|
|
|
* @brief Windows System compatibility
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Handle platform specific includes
|
|
|
|
#include "contrib/windows.h"
|
|
|
|
|
2015-08-16 10:34:35 +02:00
|
|
|
//There is no setenv()and unsetenv() in windows,but we can use putenv() instead.
|
2013-01-28 04:34:58 +01:00
|
|
|
int setenv(const char *name, const char *value, int overwrite)
|
|
|
|
{
|
2017-02-18 13:05:59 +01:00
|
|
|
char *env = getenv(name);
|
2015-08-16 10:34:35 +02:00
|
|
|
if ((env && overwrite) || (!env)) {
|
2017-02-18 13:05:59 +01:00
|
|
|
char *str[32];
|
|
|
|
strcpy(str, name);
|
|
|
|
strcat(str, "=");
|
|
|
|
strcat(str, value);
|
2015-08-16 10:34:35 +02:00
|
|
|
return putenv(str);
|
2013-01-28 04:34:58 +01:00
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void unsetenv(const char *name)
|
|
|
|
{
|
2017-02-18 13:05:59 +01:00
|
|
|
char *str[32];
|
|
|
|
strcpy(str, name);
|
|
|
|
strcat(str, "=");
|
2015-08-16 10:34:35 +02:00
|
|
|
putenv(str);
|
2013-01-31 16:09:41 +01:00
|
|
|
}
|