lua/lua.c

81 lines
1.5 KiB
C
Raw Normal View History

1993-07-28 17:18:00 +04:00
/*
1997-09-16 23:25:59 +04:00
** $Id: $
** Lua stand-alone interpreter
** See Copyright Notice in lua.h
1993-07-28 17:18:00 +04:00
*/
1993-12-17 21:41:19 +03:00
1993-07-28 17:18:00 +04:00
#include <stdio.h>
1995-02-07 19:04:15 +03:00
#include <string.h>
1993-07-28 17:18:00 +04:00
#include "lua.h"
1997-09-16 23:25:59 +04:00
#include "luadebug.h"
1993-07-28 17:18:00 +04:00
#include "lualib.h"
1997-09-16 23:25:59 +04:00
#ifndef OLD_ANSI
#include <locale.h>
1996-05-04 00:10:59 +04:00
#else
1997-09-16 23:25:59 +04:00
#define setlocale(a,b) 0
1996-05-04 00:10:59 +04:00
#endif
1997-09-16 23:25:59 +04:00
#ifdef _POSIX_SOURCE
#include <unistd.h>
#else
1997-09-16 23:25:59 +04:00
#define isatty(x) (x==0) /* assume stdin is a tty */
#endif
static void manual_input (void)
{
if (isatty(0)) {
char buffer[250];
while (fgets(buffer, sizeof(buffer), stdin) != 0) {
lua_beginblock();
lua_dostring(buffer);
lua_endblock();
}
}
else
lua_dofile(NULL); /* executes stdin as a file */
}
1994-11-28 20:12:49 +03:00
int main (int argc, char *argv[])
1993-07-28 17:18:00 +04:00
{
int i;
1997-07-01 23:32:41 +04:00
setlocale(LC_ALL, "");
1997-09-16 23:25:59 +04:00
lua_iolibopen ();
lua_strlibopen ();
lua_mathlibopen ();
if (argc < 2)
manual_input();
else for (i=1; i<argc; i++) {
if (strcmp(argv[i], "-") == 0)
manual_input();
1997-09-16 23:25:59 +04:00
else if (strcmp(argv[i], "-d") == 0)
lua_debug = 1;
else if (strcmp(argv[i], "-v") == 0)
printf("%s %s\n(written by %s)\n\n",
LUA_VERSION, LUA_COPYRIGHT, LUA_AUTHORS);
else if ((strcmp(argv[i], "-e") == 0 && i++) || strchr(argv[i], '=')) {
if (lua_dostring(argv[i]) != 0) {
fprintf(stderr, "lua: error running argument `%s'\n", argv[i]);
return 1;
}
}
else {
1997-09-16 23:25:59 +04:00
int result = lua_dofile (argv[i]);
if (result) {
if (result == 2) {
fprintf(stderr, "lua: cannot execute file ");
perror(argv[i]);
}
return 1;
}
}
}
1997-09-16 23:25:59 +04:00
return 0;
1993-07-28 17:18:00 +04:00
}