📄 base64.h
字号:
/* $Id: base64.h,v 1.10 2005/01/04 15:46:33 m-a Exp $ *//** \file base64.h * prototypes and definitions for base64.c */#ifndef HAVE_BASE64_H#define HAVE_BASE64_H#include "word.h"/** decode base64 in-place, \return the count of decoded bytes in the \a * word */uint base64_decode(word_t *word /** string to decode in-place, will be modified */);/** check if \a word contains conformant base64-encoded data */bool base64_validate(const word_t *word);#endif /* HAVE_BASE64_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -