This is Webservice SDK for mbed. LPCXpresso1769/LPC1768/FRDM-K64F/LPC4088

Dependents:   MbedFileServer_1768MiniDK2 RedWireBridge IssueDebug_gcc MiMicRemoteMCU-for-Mbed ... more

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers NyLPC_cBase64.h Source File

NyLPC_cBase64.h

00001 /*
00002  * NyLPC_cBase64.h
00003  *
00004  *  Created on: 2013/09/04
00005  *      Author: nyatla
00006  */
00007 
00008 #ifndef NYLPC_CBASE64_H_
00009 #define NYLPC_CBASE64_H_
00010 #include "NyLPC_stdlib.h"
00011 #ifdef __cplusplus
00012 extern "C" {
00013 #endif /* __cplusplus */
00014 
00015 /**
00016  * @param i_src
00017  * @param length
00018  * @param i_dest
00019  * Base64文字列の出力領域. length/3*4+1の長さが必要。
00020  */
00021 void NyLPC_cBase64_encode(const NyLPC_TChar* i_src,NyLPC_TUInt16 length,char* i_dest);
00022 
00023 
00024 #ifdef __cplusplus
00025 }
00026 #endif /* __cplusplus */
00027 
00028 #endif /* NYLPC_CBASE64_H_ */
00029