Annotation of libwww/Library/src/HTEPtoCl.c, revision 2.2

2.1       frystyk     1: /*                                                              HTEpToClient.c
                      2: **     EXTERNAL PARSE TO CLIENT
                      3: **
2.2     ! frystyk     4: **     (c) COPYRIGHT MIT 1995.
2.1       frystyk     5: **     Please first read the full copyright statement in the file COPYRIGH.
                      6: **
                      7: **     This module contains the interface between the 
                      8: **      the ExtParse module and the client. The dummy function is
                      9: **      only here so that clients that use the ExtParse module
                     10: **      can overWrite it.
                     11: **
                     12: ** History:
                     13: **     19 Sep 94       Written by Hakon W Lie, howcome@info.cern.ch
                     14: */
                     15: 
                     16: /* Library include files */
                     17: #include "tcp.h"
                     18: #include "HTUtils.h"
                     19: #include "HTStream.h"
                     20: 
                     21: PUBLIC void HTCallClient ARGS1(HTStream *, me)
                     22: {
                     23:     return;
                     24: }

Webmaster