mimeb64.h
来自「MIME(Quoted-Printable & Base64) 编码解码程序」· C头文件 代码 · 共 28 行
H
28 行
//---------------------------------------------------------------------------
// MIME(Quoted-Printable & Base64) Encode/Decode unit. (H)
// Copyright (c) 2000, 01 Mental Studio - http://msrc.126.com
// Author : Raptor - raptorz@163.com
//---------------------------------------------------------------------------
#ifndef mimeb64H
#define mimeb64H
//---------------------------------------------------------------------------
#ifdef __cplusplus
extern "C" {
#endif
// Quoted-Printable
int QPEncode( char * const aDest, const unsigned char * aSrc, int aLen );
int QPDecode( unsigned char * const aDest, const char * aSrc );
// Base64
int Base64Encode( char * const aDest, const unsigned char * aSrc, int aLen );
int Base64Decode( unsigned char * const aDest, const char * aSrc );
#ifdef __cplusplus
}
#endif
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?