2020-12-20 08:57:39 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include <mujs.h>
|
|
|
|
#include <import.h>
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2020-12-20 09:45:42 +01:00
|
|
|
if (argc == 1) {
|
|
|
|
printf("usage: %s [program.js]\n", argv[0]);
|
|
|
|
} else {
|
|
|
|
import_functions();
|
|
|
|
js_dofile(J, argv[1]);
|
|
|
|
js_freestate (J);
|
|
|
|
}
|
2020-12-20 08:57:39 +01:00
|
|
|
exit(0);
|
|
|
|
}
|