📄 rot13_encode.h
字号:
// ROT13_Encode.h
// Routine to generate ROT13 encoded text
// Michael Coles, MCDBA, 7/2005
//
#include <string.h>
// Function to encode a string using ROT13. See definition for parameters.
void ROT13_Encode_String(BYTE *pPlaintext, ULONG length);
// Function to encode a single character using ROT13. See definition for parameters.
BYTE ROT13_Encode_Char(BYTE c);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -