lat/include/file.h

9 lines
129 B
C
Raw Permalink Normal View History

2023-04-11 00:14:18 +00:00
#ifndef FILE_H
#define FILE_H
2023-04-17 22:40:17 +00:00
#include <stdbool.h>
#include <stdio.h>
2023-04-11 00:14:18 +00:00
2023-04-17 22:40:17 +00:00
struct filedata readfile(FILE *fp, bool isstdin);
2023-04-11 00:14:18 +00:00
#endif