mirror of
https://github.com/joel16/3DSident.git
synced 2024-11-23 03:29:45 +00:00
2dcd466f97
Removed FS_RecursiveMakeDir because it is unused.
14 lines
442 B
C
14 lines
442 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);
|
|
void Utils_U8_To_U16(u16 *buf, const char *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
|