1
0
mirror of https://github.com/elua/elua.git synced 2025-01-25 01:02:54 +08:00
elua/inc/shell.h

16 lines
383 B
C
Raw Normal View History

2008-07-29 11:08:54 +00:00
// eLua shell
#ifndef __SHELL_H__
#define __SHELL_H__
#define SHELL_WELCOMEMSG "\neLua v%s Copyright (C) 2007-2010 www.eluaproject.org\n"
2008-07-29 11:08:54 +00:00
#define SHELL_PROMPT "eLua# "
#define SHELL_ERRMSG "Invalid command, type 'help' for help\n"
#define SHELL_MAXSIZE 50
#define SHELL_MAX_LUA_ARGS 8
int shell_init();
2008-07-29 11:08:54 +00:00
void shell_start();
#endif // #ifndef __SHELL_H__