aboutsummaryrefslogtreecommitdiff
path: root/lib/env/env.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/env/env.h')
-rw-r--r--lib/env/env.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/env/env.h b/lib/env/env.h
new file mode 100644
index 0000000..7d95d63
--- /dev/null
+++ b/lib/env/env.h
@@ -0,0 +1,7 @@
+#ifndef ENV_H
+#define ENV_H
+
+const char *getenv(const char *key);
+void setenv(const char *key, const char *value);
+
+#endif