?? htuu.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 + -