lat/include/types.h

23 lines
228 B
C
Raw Permalink Normal View History

2023-04-17 14:23:52 +00:00
#ifndef TYPES_H
#define TYPES_H
#include <stdbool.h>
#include <stddef.h>
struct line {
size_t len;
char *buf;
};
struct filedata {
int lc;
bool binary;
size_t buflen;
char *buf;
struct line *lines;
};
#endif