lat/include/file.h

14 lines
166 B
C
Raw Permalink Normal View History

2023-04-11 00:14:18 +00:00
#include <stdio.h>
#ifndef FILE_H
#define FILE_H
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;
};
struct filedata readfile(FILE *fp);
#endif