#ifndef ARGENT_BINDINGS_H #define ARGENT_BINDINGS_H #include 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