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