1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /*
- ** lua.c
- ** Linguagem para Usuarios de Aplicacao
- */
- char *rcs_lua="$Id: lua.c,v 1.7 1995/10/31 17:05:35 roberto Exp roberto $";
- #include <stdio.h>
- #include <string.h>
- #include "lua.h"
- #include "lualib.h"
- static int lua_argc;
- static char **lua_argv;
- /*
- ** although this function is POSIX, there is no standard header file that
- ** defines it
- */
- int isatty (int fd);
- /*
- %F Allow Lua code to access argv strings.
- %i Receive from Lua the argument number (starting with 1).
- %o Return to Lua the argument, or nil if it does not exist.
- */
- static void lua_getargv (void)
- {
- lua_Object lo = lua_getparam(1);
- if (!lua_isnumber(lo))
- lua_pushnil();
- else
- {
- int n = (int)lua_getnumber(lo);
- if (n < 1 || n > lua_argc) lua_pushnil();
- else lua_pushstring(lua_argv[n]);
- }
- }
- static void manual_input (void)
- {
- if (isatty(fileno(stdin)))
- {
- char buffer[250];
- while (fgets(buffer, sizeof(buffer), stdin) != 0)
- lua_dostring(buffer);
- }
- else
- lua_dofile(NULL); /* executes stdin as a file */
- }
- int main (int argc, char *argv[])
- {
- int i;
- int result = 0;
- iolib_open ();
- strlib_open ();
- mathlib_open ();
- lua_register("argv", lua_getargv);
- if (argc < 2)
- manual_input();
- else
- {
- for (i=1; i<argc; i++)
- if (strcmp(argv[i], "--") == 0)
- {
- lua_argc = argc-i-1;
- lua_argv = argv+i;
- break;
- }
- for (i=1; i<argc; i++)
- {
- if (strcmp(argv[i], "--") == 0)
- break;
- else if (strcmp(argv[i], "-") == 0)
- manual_input();
- else if (strcmp(argv[i], "-v") == 0)
- printf("%s %s\n(written by %s)\n\n",
- LUA_VERSION, LUA_COPYRIGHT, LUA_AUTHORS);
- else
- result = lua_dofile (argv[i]);
- }
- }
- return result;
- }
|