Haka
interactive.h
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4 
5 #ifndef LUADEBUG_INTERACTIVE_H
6 #define LUADEBUG_INTERACTIVE_H
7 
8 struct lua_State;
9 struct luadebug_user;
10 
11 void luadebug_interactive_user(struct luadebug_user *user);
12 void luadebug_interactive_enter(struct lua_State *L, const char *single, const char *multi,
13  const char *msg, int env, struct luadebug_user *user);
14 
15 #endif /* LUADEBUG_INTERACTIVE_H */