📄 htansi.h
字号:
/* W3C Sample Code Library ANSI Read and Write Streams! ANSI Read and Write Streams!*//*** (c) COPYRIGHT MIT 1995.** Please first read the full copyright statement in the file COPYRIGH.*//*The ANSI Reader Stream and the ANSI Writer Stream areoutput streams which knows how to readand write to an ANSI C type FILE descriptor. Both streams are part of theTransport interface and may be registered aspart of a Transport Object. In thedefault initialization interface, you can find theHTTransportInit() function which sets up the streams for handlinglocal file access on some platforms.This module is implemented by HTANSI.c, and it isa part of the W3C Sample CodeLibrary.*/#ifndef HTANSI_H#define HTANSI_H#include "HTIOStream.h"/*. Input Buffering.In order to optimize reading a channel, we bind a buffer to each channelobject. The size of this buffer is a compromise between speed and memory.*/#define FILE_BUFFER_SIZE 65536/*. Read Stream.*/extern HTInput_new HTANSIReader_new;/*. Write Stream.*/extern HTOutput_new HTANSIWriter_new;/**/#endif/*End of declaration module*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -