aboutsummaryrefslogtreecommitdiff
path: root/src/file.h
blob: 7e8c167450e2801ecd7bbabdab15f42e310379b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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