[core] fix buffer_copy_string_hex() assert (fixes #2742)
[lighttpd.git] / src / mod_cml_funcs.h
blobfd3069d74cd09a25140e29d840fc2e2595e2e17e
1 #ifndef _MOD_CML_FUNCS_H_
2 #define _MOD_CML_FUNCS_H_
3 #include "first.h"
5 #ifdef HAVE_LUA_H
6 #include <lua.h>
8 int f_crypto_md5(lua_State *L);
9 int f_file_mtime(lua_State *L);
10 int f_file_isreg(lua_State *L);
11 int f_file_isdir(lua_State *L);
12 int f_dir_files(lua_State *L);
14 int f_memcache_exists(lua_State *L);
15 int f_memcache_get_string(lua_State *L);
16 int f_memcache_get_long(lua_State *L);
17 #endif
18 #endif