mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-26 05:42:07 +00:00
8 lines
No EOL
196 B
C
8 lines
No EOL
196 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);
|
|
|
|
#define FREE(x) free(x); x = NULL; |