blob: 847baa75eeca17d545941abacbe6658d8c660448 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#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);
#endif
|