summaryrefslogtreecommitdiff
path: root/src/honeysuckle.c
diff options
context:
space:
mode:
authorsanine-a <sanine.not@pm.me>2021-05-23 16:47:59 -0500
committersanine-a <sanine.not@pm.me>2021-05-23 16:47:59 -0500
commite06165088c13cd31819a7b1bb1a2ba9e5aaf689e (patch)
treea1772bfb552202af710bddc0ebf5231376c845e4 /src/honeysuckle.c
parent4dc4d9f1d20a73d1e4c399a56c86bf70589b13d9 (diff)
create initial files and write three hs_pushstring() tests
Diffstat (limited to 'src/honeysuckle.c')
-rw-r--r--src/honeysuckle.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/honeysuckle.c b/src/honeysuckle.c
new file mode 100644
index 0000000..423fa1b
--- /dev/null
+++ b/src/honeysuckle.c
@@ -0,0 +1,7 @@
+#include "honeysuckle.h"
+
+void hs_pushstring(lua_State *L, const char *format_string, ...)
+{
+ lua_pushnumber(L, 0.4);
+ format_string = format_string;
+}