📄 base64decoder.h
字号:
// =============================================================
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -