16 lines
224 B
C
16 lines
224 B
C
#ifndef FILE_H
|
|
#define FILE_H
|
|
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
typedef struct {
|
|
char** content;
|
|
uint64_t lines;
|
|
} File;
|
|
|
|
File* new_file(const char*);
|
|
|
|
#endif // FILE_H
|