Add file copy/move

This commit is contained in:
SuchMemeManySkill
2020-12-26 01:05:33 +01:00
parent a74a8814e1
commit ab5c5e799e
12 changed files with 138 additions and 43 deletions

View File

@@ -3,4 +3,6 @@
char *CpyStr(const char* in);
void MaskIn(char *mod, u32 bitstream, char mask);
bool StrEndsWith(char *begin, char *end);
bool StrEndsWith(char *begin, char *end);
#define FREE(x) free(x); x = NULL;