aboutsummaryrefslogtreecommitdiff
path: root/src/file.h
blob: a2fbd6c634f4bfff8e62fc9fc0395bb18aad8ecb (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef __FILE_H
#define __FILE_H

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