mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-07-24 20:00:52 -05:00
18 lines
378 B
C
18 lines
378 B
C
#ifndef DWC_UTIL_BASE64_H_
|
|
#define DWC_UTIL_BASE64_H_
|
|
|
|
#include <nitro.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int DWC_Auth_Base64Encode(const char * src, const unsigned long srclen, char * dst, const unsigned long dstlen);
|
|
int DWC_Auth_Base64Decode(const char * src, const unsigned long srclen, char * dst, const unsigned long dstlen);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|