diff options
Diffstat (limited to 'file.h')
-rw-r--r-- | file.h | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -0,0 +1,13 @@ +#ifndef __FILE_H +#define __FILE_H +#define _DEFAULT_SOURCE + +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(); + +#endif |