summaryrefslogtreecommitdiff
path: root/src/bindings.h
blob: 2e4d26cf39d5c068841e657df669249631278449 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef ARGENT_BINDINGS_H
#define ARGENT_BINDINGS_H

#include <lua.h>

int markdown(lua_State *L);

int current_working_directory(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