1
0
mirror of https://github.com/elua/elua.git synced 2025-01-08 20:56:17 +08:00
elua/inc/shell.h

16 lines
382 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 %s Copyright (C) 2007-2011 www.eluaproject.net\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__