1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-09-19 21:43:40 +01:00
TegraExplorer/source/utils/utils.h
suchmememanyskill b818b577e9 Small tweaks
- swap crash for credits
- home now reboots to atmosphere/reboot_payload.bin, or rcm if not found
2021-01-01 11:43:31 +01:00

11 lines
301 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);
void RebootToPayloadOrRcm();
#define FREE(x) free(x); x = NULL;
char *ShowKeyboard(const char *toEdit, u8 alwaysRet);