From e54d8327819e310b7b148e45c15fca197be845c7 Mon Sep 17 00:00:00 2001 From: nirav Date: Sun, 9 Sep 2018 12:13:13 +0530 Subject: Moved source files to src dir, updated makefile --- src/file.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/file.h (limited to 'src/file.h') diff --git a/src/file.h b/src/file.h new file mode 100644 index 0000000..7e8c167 --- /dev/null +++ b/src/file.h @@ -0,0 +1,15 @@ +#ifndef __FILE_H +#define __FILE_H + +char **file_list; +char *curr_file_name; +int curr_file_index, file_list_count; + +int scan(const char *file_name); +char *get_next_file(); +char *get_prev_file(); +char *get_first_file(); +char *get_last_file(); +void clean(); + +#endif -- cgit v1.2.3