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

📄 htuu.h

📁 firtext搜索引擎源码
💻 H
字号:
/*					W3C Sample Code Library libwww UU ENCODING AND DECODING!Encoding to Printable Characters!*//***	(c) COPYRIGHT MIT 1995.**	Please first read the full copyright statement in the file COPYRIGH.*//*File module provides functions HTUU_encode() andHTUU_decode() which convert a buffer of bytes to/from RFC1113 printable encoding format.This technique is similar to the familiar Unix uuencode format in thatit maps 6 binary bits to one ASCII character (or more aptly, 3 binarybytes to 4 ASCII characters).  However, RFC 1113 does not use the samemapping to printable characters as uuencode. This module is implemented by HTUU.c, and it is apart of the  W3CSample Code Library.*/#ifndef HTUU_H#define HTUU_Hextern int HTUU_encode (unsigned char * bufin, unsigned int nbytes,			char * bufcoded);extern int HTUU_decode (char * bufcoded, unsigned char * bufplain,			int outbufsize);#endif/*@(#) $Id: HTUU.html,v 2.14 1998/05/14 02:11:15 frystyk Exp $*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -