mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
41396ff48a
- Fix handling of precision in hex float formatting - Enhance the cocmd interpreter for system() and popen() - Manually ran the Lua unit tests, which are now passing - Let stdio i/o operations happen when file is in error state - We're now saving and restoring xmm in ftrace out of paranoia
35 lines
1.2 KiB
C
35 lines
1.2 KiB
C
#ifndef COSMOPOLITAN_THIRD_PARTY_LUA_LREPL_H_
|
|
#define COSMOPOLITAN_THIRD_PARTY_LUA_LREPL_H_
|
|
#include "libc/intrin/nopl.internal.h"
|
|
#include "third_party/linenoise/linenoise.h"
|
|
#include "third_party/lua/lauxlib.h"
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
extern bool lua_repl_blocking;
|
|
extern bool lua_repl_isterminal;
|
|
extern const char *lua_progname;
|
|
extern struct linenoiseState *lua_repl_linenoise;
|
|
extern linenoiseCompletionCallback *lua_repl_completions_callback;
|
|
|
|
void lua_freerepl(void);
|
|
void lua_repl_lock(void);
|
|
void lua_repl_unlock(void);
|
|
int lua_loadline(lua_State *);
|
|
void lua_l_print(lua_State *);
|
|
void lua_initrepl(lua_State *);
|
|
void lua_sigint(lua_State *, int);
|
|
int lua_report(lua_State *, int);
|
|
int lua_runchunk(lua_State *, int, int);
|
|
void lua_l_message(const char *, const char *);
|
|
char *lua_readline_hint(const char *, const char **, const char **);
|
|
void lua_readline_completions(const char *, linenoiseCompletions *);
|
|
|
|
#ifdef _NOPL0
|
|
#define lua_repl_lock() _NOPL0("__threadcalls", lua_repl_lock)
|
|
#define lua_repl_unlock() _NOPL0("__threadcalls", lua_repl_unlock)
|
|
#endif
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_THIRD_PARTY_LUA_LREPL_H_ */
|