1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-09-19 21:43:40 +01:00
TegraExplorer/source/meme/utils.h
Such Meme, Many Skill d65eaedb14 Added file copying/moving/deleting
Also added sd failure messages

This probably needs a lot of cleanup
2019-08-16 16:13:58 +02:00

15 lines
477 B
C

#pragma once
#define OPTION1 (1 << 0)
#define OPTION2 (1 << 1)
#define OPTION3 (1 << 2)
#define OPTION4 (1 << 3)
void utils_gfx_init();
void utils_waitforpower();
void removepartpath(char *path);
void addpartpath(char *path, char *add);
int readfolder(char *items[], unsigned int *muhbits, const char *path);
int copy(const char *src, const char *dst);
void addchartoarray(char *add, char *items[], int spot);
int copywithpath(const char *src, const char *dstpath, int mode);