~ubuntu-branches/ubuntu/natty/lighttpd/natty

« back to all changes in this revision

Viewing changes to src/mod_cml_funcs.h

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Marek
  • Date: 2005-11-26 11:48:51 UTC
  • Revision ID: james.westby@ubuntu.com-20051126114851-76t9q0rrwbzjnt2t
Tags: upstream-1.4.8
ImportĀ upstreamĀ versionĀ 1.4.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
 
11
int f_crypto_md5(lua_State *L);
 
12
int f_file_mtime(lua_State *L);
 
13
int f_file_isreg(lua_State *L);
 
14
int f_file_isdir(lua_State *L);
 
15
int f_dir_files(lua_State *L);
 
16
 
 
17
int f_memcache_exists(lua_State *L);
 
18
int f_memcache_get_string(lua_State *L);
 
19
int f_memcache_get_long(lua_State *L);
 
20
#endif
 
21
#endif