aboutsummaryrefslogblamecommitdiffstats
path: root/getenv_e.c
blob: 95eb34efa6af85a970424689b98debb01904e92e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                           


                              


                                                        
                     

                                                           
                     






                                                        
/* See LICENSE file for copyright and license details. */
#include "libsimple.h"
#ifndef TEST


extern inline const char *libsimple_getenv_e(const char *);


#else
#include "test.h"

int
main(void)
{
	char env1[] = "X=xyz";
	char env2[] = "X=";

	unsetenv("X");
	assert(!getenv("X"));
	assert(!strcmpnul(libsimple_getenv_e("X"), ""));
	putenv(env1);
	assert(!strcmpnul(getenv("X"), "xyz"));
	assert(!strcmpnul(libsimple_getenv_e("X"), "xyz"));
	putenv(env2);
	assert(!strcmpnul(getenv("X"), ""));
	assert(!strcmpnul(libsimple_getenv_e("X"), ""));

	return 0;
}

#endif