base64.h

来自「一个C语言写的快速贝叶斯垃圾邮件过滤工具」· C头文件 代码 · 共 19 行

H
19
字号
/* $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 + =
减小字号Ctrl + -
显示快捷键?