mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-09 21:51:48 +00:00
f1d433e69a
Also add sd mounting/unmounting Also add vol+/- controls for sideways menus
9 lines
No EOL
218 B
C
9 lines
No EOL
218 B
C
#pragma once
|
|
#include <utils/types.h>
|
|
|
|
char *CpyStr(const char* in);
|
|
void MaskIn(char *mod, u32 bitstream, char mask);
|
|
bool StrEndsWith(char *begin, char *end);
|
|
void WaitFor(u32 ms);
|
|
|
|
#define FREE(x) free(x); x = NULL; |