aboutsummaryrefslogtreecommitdiffstats
path: root/vputenvf.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-06-10 20:34:32 +0200
committerMattias Andrée <maandree@kth.se>2022-06-10 20:34:32 +0200
commit056c5fe698f194c3187b9eec5378c441930c005b (patch)
treefc918970dcb3576774754c990af230b4dbab02e9 /vputenvf.c
parentAdd strto[u]{hh,h,z}, strto{i,u}{,8,16,32,64} (diff)
downloadlibsimple-056c5fe698f194c3187b9eec5378c441930c005b.tar.gz
libsimple-056c5fe698f194c3187b9eec5378c441930c005b.tar.bz2
libsimple-056c5fe698f194c3187b9eec5378c441930c005b.tar.xz
Remove `static` from some `static inline`
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'vputenvf.c')
-rw-r--r--vputenvf.c22
1 files changed, 1 insertions, 21 deletions
diff --git a/vputenvf.c b/vputenvf.c
index ee823f2..ea97ae6 100644
--- a/vputenvf.c
+++ b/vputenvf.c
@@ -36,27 +36,7 @@ libsimple_vputenvf(const char *fmt, va_list ap)
int
main(void)
{
- unsetenv("X");
- assert(!getenv("X"));
- unsetenv("Y");
- assert(!getenv("Y"));
-
- putenvf("X=xyz");
- assert(!strcmpnul(getenv("X"), "xyz"));
- putenvf("Y=xyz");
- assert(!strcmpnul(getenv("Y"), "xyz"));
-
- putenvf("X=x%sz", "abc");
- assert(!strcmpnul(getenv("X"), "xabcz"));
- putenvf("Y=x%sz", "abc");
- assert(!strcmpnul(getenv("Y"), "xabcz"));
-
- putenvf("X=%ix%sz%i", 10, "abc", -11);
- assert(!strcmpnul(getenv("X"), "10xabcz-11"));
- putenvf("Y=%ix%sz%i", 10, "abc", -11);
- assert(!strcmpnul(getenv("Y"), "10xabcz-11"));
-
- return 0;
+ return 0; /* Tested via libsimple_putenvf */
}
#endif