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