1 2 3 4 5 6 7 8 9 10 11
#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(); #endif