blob: c5306351e6b983f83fda9661e65f6bda86d50d29 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/* */
/* Unix File or Socket Writer HTWriter.c
** --------------------------
**
** This version of the stream object just writes to a socket.
** The socket is assumed open and closed afterward.
**
** There are two versions (identical on ASCII machines)
** one of which converts to ASCII on output.
**
** Bugs:
** strings written must be less than buffer size.
*/
#ifndef HTWRITE_H
#define HTWRITE_H
#include <HTStream.h>
extern HTStream * HTWriter_new PARAMS((int soc));
extern HTStream * HTASCIIWriter PARAMS((int soc));
#endif
/*
*/
|