summaryrefslogtreecommitdiff
path: root/src/bindings.h
blob: 853f0c0d6b9d9dff73350c26c1206f5b76481392 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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);

#endif