2023-04-11 00:14:18 +00:00
|
|
|
#ifndef FILE_H
|
|
|
|
#define FILE_H
|
2023-04-13 03:46:53 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
2023-04-11 00:14:18 +00:00
|
|
|
struct filedata {
|
|
|
|
int lc;
|
2023-04-11 16:32:38 +00:00
|
|
|
size_t len;
|
2023-04-11 23:17:36 +00:00
|
|
|
int binary;
|
2023-04-11 00:14:18 +00:00
|
|
|
char *buf;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct filedata readfile(FILE *fp);
|
|
|
|
#endif
|