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

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.
2.7     ! frystyk     6: **     @(#) $Id: Date Author State $
2.1       frystyk     7: **
                      8: **     This module contains the interface between the 
2.5       frystyk     9: **      the XParse module and the client. The dummy function is
                     10: **      only here so that clients that use the XParse module
2.1       frystyk    11: **      can overWrite it.
                     12: **
                     13: ** History:
2.3       frystyk    14: **     19 Sep 94       Written by Hakon W Lie, howcome@w3.org
2.5       frystyk    15: **      5  Dec 95       howcome changed name from Ext to X
2.1       frystyk    16: */
                     17: 
                     18: /* Library include files */
2.6       frystyk    19: #include "sysdep.h"
2.1       frystyk    20: #include "HTUtils.h"
                     21: #include "HTStream.h"
                     22: 
2.4       frystyk    23: PUBLIC void HTCallClient (HTStream * me)
2.1       frystyk    24: {
                     25:     return;
                     26: }

Webmaster