blob: 7b0dc37ffb40b3c95993f2085fd9f0fbf49b9f2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
#include <stddef.h>
extern size_t fileCodes_capacity;
extern char **fileCodes;
extern char **fileCodes_names;
extern size_t fileCodes_length;
void fileInit();
void fileDelete();
void filePush(const char *filePath, char *code);
char *readWholeFile(const char *filePath);
size_t getFileIndex(const char *filePath);
char *joinToPathOf(const char *original, const char *file);
|