ccc/file.h

19 lines
335 B
C
Raw Normal View History

#ifndef FILE_H_
#define FILE_H_
typedef struct file {
char *path;
2024-03-11 22:54:14 +01:00
char *stats;
// put some more useful stat here
struct file *next;
} file;
long files_len();
void clear_files();
2024-03-11 22:54:14 +01:00
long add_file(char *filename, char *time);
file *get_file(long index);
char *get_filepath(long index);
2024-03-11 22:54:14 +01:00
char *get_line(long index);
#endif