summaryrefslogtreecommitdiffstats
path: root/embedding/ios/GeckoEmbed/js/shell.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'embedding/ios/GeckoEmbed/js/shell.cpp')
-rw-r--r--embedding/ios/GeckoEmbed/js/shell.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/embedding/ios/GeckoEmbed/js/shell.cpp b/embedding/ios/GeckoEmbed/js/shell.cpp
new file mode 100644
index 000000000..82171ca37
--- /dev/null
+++ b/embedding/ios/GeckoEmbed/js/shell.cpp
@@ -0,0 +1,25 @@
+#include "OSObject.cpp"
+#include "jsoptparse.cpp"
+#define main shell_main
+#include "js.cpp"
+#undef main
+
+#include <unistd.h>
+
+extern "C" bool GetDocumentsDirectory(char *dir);
+
+// Fake editline
+char* readline(const char* prompt)
+{
+ return nullptr;
+}
+
+void add_history(char* line) {}
+
+int main(int argc, char** argv, char** envp)
+{
+ char dir[1024];
+ GetDocumentsDirectory(dir);
+ chdir(dir);
+ return shell_main(argc, argv, envp);
+}