lighttpd 1.4.x
https://www.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
429 B
21 lines
429 B
#ifndef _MOD_CML_FUNCS_H_ |
|
#define _MOD_CML_FUNCS_H_ |
|
|
|
#ifdef HAVE_CONFIG_H |
|
#include "config.h" |
|
#endif |
|
|
|
#ifdef HAVE_LUA_H |
|
#include <lua.h> |
|
|
|
int f_crypto_md5(lua_State *L); |
|
int f_file_mtime(lua_State *L); |
|
int f_file_isreg(lua_State *L); |
|
int f_file_isdir(lua_State *L); |
|
int f_dir_files(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
|
|
|