blob: 9cc3720609803bd50e5ad9efada787b80c9670f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include "honeysuckle.h"
const char* hs_type_to_string(int type)
{
type = type;
return "mock";
}
void hs_parse_args(lua_State *L, ...)
{
L = L;
}
void hs_pushstring(lua_State *L, const char *format_string, ...)
{
lua_pushnumber(L, 0.4);
format_string = format_string;
}
|