pokeplatinum/lib/NitroDWC/include/auth/util_base64.h
luckytyphlosion 320da2296d Move around library includes.
Old structure: put everything in lib/include
New structure: put library includes in their respective library folder. e.g. lib/NitroDWC/include/dwc.h
2023-01-05 18:53:16 -05:00

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