summaryrefslogtreecommitdiff
path: root/avr/env.h
diff options
context:
space:
mode:
Diffstat (limited to 'avr/env.h')
-rw-r--r--avr/env.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/avr/env.h b/avr/env.h
new file mode 100644
index 0000000..ac66846
--- /dev/null
+++ b/avr/env.h
@@ -0,0 +1,12 @@
+#ifndef ENV_H
+#define ENV_H
+
+int set_default_env(void);
+int env_check(void);
+int env_init(void);
+
+char *getenv(const char *name);
+int env_complete(char *var, int maxv, char *cmdv[], int maxsz, char *buf);
+
+#endif /* ENV_H */
+