blob: 1050c7789b805e77b51fb4c7cc8637db66baafcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __FILE_H
#define __FILE_H
int scan(const char *file_name);
void next_file();
void prev_file();
void first_file();
void last_file();
void clean();
int get_current_file_index();
int get_total_file_count();
#endif
|