aboutsummaryrefslogtreecommitdiffstats
path: root/getenv_e.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-06-11 16:37:09 +0200
committerMattias Andrée <maandree@kth.se>2022-06-11 16:37:09 +0200
commitfcfe59c1f2219408ac2a9cd84b386816ff252221 (patch)
tree0f46c009babfba2d0200ece3ecce067c548a66b6 /getenv_e.c
parentRemove `static` from some `static inline` (diff)
downloadlibsimple-fcfe59c1f2219408ac2a9cd84b386816ff252221.tar.gz
libsimple-fcfe59c1f2219408ac2a9cd84b386816ff252221.tar.bz2
libsimple-fcfe59c1f2219408ac2a9cd84b386816ff252221.tar.xz
Fix warnings, replace some static inline with inline + extern inline, and fix glibc support
Diffstat (limited to 'getenv_e.c')
-rw-r--r--getenv_e.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/getenv_e.c b/getenv_e.c
index c09859d..95eb34e 100644
--- a/getenv_e.c
+++ b/getenv_e.c
@@ -12,13 +12,16 @@ extern inline const char *libsimple_getenv_e(const char *);
int
main(void)
{
+ char env1[] = "X=xyz";
+ char env2[] = "X=";
+
unsetenv("X");
assert(!getenv("X"));
assert(!strcmpnul(libsimple_getenv_e("X"), ""));
- putenv("X=xyz");
+ putenv(env1);
assert(!strcmpnul(getenv("X"), "xyz"));
assert(!strcmpnul(libsimple_getenv_e("X"), "xyz"));
- putenv("X=");
+ putenv(env2);
assert(!strcmpnul(getenv("X"), ""));
assert(!strcmpnul(libsimple_getenv_e("X"), ""));