blob: 82171ca37eedf522c82af1c88b25600f3fb8dbb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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);
}
|