mirror of
https://github.com/joel16/3DSident.git
synced 2024-11-23 11:39:43 +00:00
13 lines
375 B
C
13 lines
375 B
C
|
#ifndef _3DSIDENT_UTILS_H_
|
||
|
#define _3DSIDENT_UTILS_H_
|
||
|
|
||
|
#include <3ds.h>
|
||
|
|
||
|
void Utils_GetSizeString(char *string, uint64_t size);
|
||
|
bool Utils_IsN3DS(void);
|
||
|
void Utils_U16_To_U8(char *buf, const u16 *input, size_t bufsize);
|
||
|
char *Utils_ExtractBetween(const char *string, const char *str1, const char *str2);
|
||
|
char *Utils_Base64Encode(u8 const *bytesToEnc, size_t bufLen);
|
||
|
|
||
|
#endif
|