summaryrefslogtreecommitdiff
path: root/src/mod_cml_funcs.h
diff options
context:
space:
mode:
authorJan Kneschke <jan@kneschke.de>2005-07-17 08:27:44 +0000
committerJan Kneschke <jan@kneschke.de>2005-07-17 08:27:44 +0000
commitec9e53fd5622f0131feda4f9c5981977f315d435 (patch)
treece7909b461342a5d8f05a2f6ea87e3aaad0c3513 /src/mod_cml_funcs.h
parent5d1792ad71804a76fafa92385b627ab8269d1b79 (diff)
downloadlighttpd-git-ec9e53fd5622f0131feda4f9c5981977f315d435.tar.gz
forgot to add it
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.3.x@463 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'src/mod_cml_funcs.h')
-rw-r--r--src/mod_cml_funcs.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/mod_cml_funcs.h b/src/mod_cml_funcs.h
new file mode 100644
index 00000000..f318d40e
--- /dev/null
+++ b/src/mod_cml_funcs.h
@@ -0,0 +1,15 @@
+#ifndef _MOD_CML_FUNCS_H_
+#define _MOD_CML_FUNCS_H_
+
+#include "config.h"
+
+#ifdef HAVE_LUA_H
+#include <lua.h>
+
+int f_crypto_md5(lua_State *L);
+int f_file_mtime(lua_State *L);
+int f_memcache_exists(lua_State *L);
+int f_memcache_get_string(lua_State *L);
+int f_memcache_get_long(lua_State *L);
+#endif
+#endif