lat/include/file.h
Shav Kinderlehrer 58e0d435c3 Add args
- add color arg
- add lines arg
2023-04-12 23:46:53 -04:00

14 lines
166 B
C

#ifndef FILE_H
#define FILE_H
#include <stdio.h>
struct filedata {
int lc;
size_t len;
int binary;
char *buf;
};
struct filedata readfile(FILE *fp);
#endif