⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 base64.h

📁 一个C语言写的快速贝叶斯垃圾邮件过滤工具
💻 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 + -