blob: 02f33c615bad7c4f9d29661ac538262f53e1d296 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef ARGENT_BINDINGS_H
#define ARGENT_BINDINGS_H
#include <lua.h>
int markdown(lua_State *L);
// return two arrays, one containing filenames for all directories in the dir
// and the other containing filenames for all regular files
int scan_directory(lua_State *L);
int create_directory(lua_State *L);
int copy_file(lua_State *L);
int argent_log_lua(lua_State *L);
#endif
|