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

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

Webmaster