1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-11-26 13:52:06 +00:00
TegraExplorer/source/utils/utils.h

8 lines
196 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 00:05:33 +00:00
bool StrEndsWith(char *begin, char *end);
#define FREE(x) free(x); x = NULL;