lat/include/file.h

15 lines
182 B
C
Raw Normal View History

2023-04-11 00:14:18 +00:00
#ifndef FILE_H
#define FILE_H
#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;
int binary;
2023-04-11 00:14:18 +00:00
char *buf;
2023-04-15 02:42:55 +00:00
char *altbuf;
2023-04-11 00:14:18 +00:00
};
struct filedata readfile(FILE *fp);
#endif