forked from github/server
79dc9acf5f
- fixing some latin1 loading - improved the spell-syntax writer - replaced my email address
22 lines
565 B
C
22 lines
565 B
C
/* vi: set ts=2:
|
|
* Eressea PB(E)M host Christian Schlittchen (corwin@amber.kn-bremen.de)
|
|
* (C) 1998-2004 Katja Zedel (katze@felidae.kn-bremen.de)
|
|
* Enno Rehling (enno@eressea.de)
|
|
*
|
|
* This program may not be used, modified or distributed without
|
|
* prior permission by the authors of Eressea.
|
|
**/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
#include <lua.hpp>
|
|
|
|
extern int lua_console(lua_State * L);
|
|
extern int lua_do(lua_State * L);
|
|
extern int (*lua_readline)(lua_State *l, const char *prompt);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|