blob: e2613e385675a5fda57ec3e159574b3ef994ea41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __FILE_H
#define __FILE_H
void 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
|