TegraExplorer/source/utils/utils.h

15 lines
361 B
C
Raw Normal View History

#pragma once
#include <utils/types.h>
char *CpyStr(const char* in);
void MaskIn(char *mod, u32 bitstream, char mask);
2020-12-26 01:05:33 +01:00
bool StrEndsWith(char *begin, char *end);
void WaitFor(u32 ms);
void RebootToPayloadOrRcm();
2020-12-26 01:05:33 +01:00
#define FREE(x) free(x); x = NULL;
2021-01-12 00:30:14 +01:00
char *ShowKeyboard(const char *toEdit, u8 alwaysRet);
void power_off();
void reboot_rcm();
void reboot_normal();