• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/lighttpd-1.4.39/src/
1#ifndef _MOD_CML_FUNCS_H_
2#define _MOD_CML_FUNCS_H_
3
4#ifdef HAVE_CONFIG_H
5# include "config.h"
6#endif
7
8#ifdef HAVE_LUA_H
9#include <lua.h>
10
11int f_crypto_md5(lua_State *L);
12int f_file_mtime(lua_State *L);
13int f_file_isreg(lua_State *L);
14int f_file_isdir(lua_State *L);
15int f_dir_files(lua_State *L);
16
17int f_memcache_exists(lua_State *L);
18int f_memcache_get_string(lua_State *L);
19int f_memcache_get_long(lua_State *L);
20#endif
21#endif
22