This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository eshell.
View the commit online.
commit 3da730efd3c48cb2ab811537807f0950a2a85ab7
Author: swagtoy <m...@ow.swag.toys>
AuthorDate: Thu Oct 24 18:04:50 2024 -0400
Some initial shell code?
---
eshell/src/eshell.c | 12 ++++++++++++
eshell/src/eshell.h | 15 +++++++++++++++
2 files changed, 27 insertions(+)
diff --git a/eshell/src/eshell.c b/eshell/src/eshell.c
new file mode 100644
index 0000000..1193e50
--- /dev/null
+++ b/eshell/src/eshell.c
@@ -0,0 +1,12 @@
+/* Eshell - eshell.c
+ * Licensed under BSD 2-Clause
+ * ---
+ * Main shell loop.
+ */
+
+#include "eshell.h"
+
+void init(struct Eshell* env, int argc, char* argv)
+{
+
+}
diff --git a/eshell/src/eshell.h b/eshell/src/eshell.h
new file mode 100644
index 0000000..f9eab2f
--- /dev/null
+++ b/eshell/src/eshell.h
@@ -0,0 +1,15 @@
+/* Eshell - eshell.h
+ * Licensed under BSD 2-Clause
+ */
+
+#ifndef ESHELL_ESHELL_H
+#define ESHELL_ESHELL_H
+
+struct Eshell
+{
+ char* prompt;
+};
+
+void init(struct Eshell* env, int argc, char* argv);
+
+#endif
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.