base64decoder.h
来自「.net 方面的开发说明资料。」· C头文件 代码 · 共 19 行
H
19 行
// =============================================================
// BASE64 Decoder
//
// Purpose: Decodes a BASE64 text stream to a byte array.
// If out is NULL, the function returns the minimum
// size of the target buffer.
//
// This file is part of Eplug
//
// Copyright (c) 2002 - 2003 Pylon Software
// =============================================================
#ifndef BASE64DECODER_H
#define BASE64DECODER_H
int DecodeFileBase64(unsigned char *out, const char *in);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?