aboutsummaryrefslogtreecommitdiff
path: root/src/len.c
diff options
context:
space:
mode:
authorame <[email protected]>2023-10-18 16:30:38 -0500
committerame <[email protected]>2023-10-18 16:30:38 -0500
commit034f54b14416dd411fbd204f8b5465b8bc462b76 (patch)
tree6a551b9b4633f2570159eeb83a8f8ac9e1019100 /src/len.c
parentb137acbcb983359568c0b9b2851ef7bbba9617b7 (diff)
md5 and sorting improvments
Diffstat (limited to 'src/len.c')
-rw-r--r--src/len.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/len.c b/src/len.c
deleted file mode 100644
index 15e84ac..0000000
--- a/src/len.c
+++ /dev/null
@@ -1,15 +0,0 @@
-#include "lua.h"
-#include "table.h"
-
-int luaopen_llib(lua_State* L) {
- lua_newtable(L);
-
- //create <lib>.array functions
- lua_newtable(L);
- luaL_register(L, NULL, array_function_list);
- lua_setfield(L, -2, "array");
-
- //make llib global
- lua_setglobal(L, "llib");
- return 1;
-}