Annotation of libwww/Library/src/HTFTPDir.html, revision 2.6

2.1       frystyk     1: <HTML>
                      2: <HEAD>
2.4       frystyk     3: <TITLE>W3C Sample Code Library libwww FTP DIRECTORY LISTING</TITLE>
2.3       frystyk     4: <!-- Changed by: Henrik Frystyk Nielsen, 23-Mar-1996 -->
2.1       frystyk     5: </HEAD>
                      6: <BODY>
                      7: 
                      8: <H1>FTP Directory Listings</H1>
                      9: 
                     10: <PRE>
                     11: /*
                     12: **     (c) COPYRIGHT MIT 1995.
                     13: **     Please first read the full copyright statement in the file COPYRIGH.
                     14: */
                     15: </PRE>
                     16: 
                     17: This module converts a FTP directory listing to a HTML object<P>
                     18: 
                     19: This module is implemented by <A HREF="HTFTPDir.c">HTFTPDir.c</A>, and it is
2.5       frystyk    20: a part of the <A HREF="http://www.w3.org/Library/">W3C
2.4       frystyk    21: Sample Code Library</A>.
2.1       frystyk    22: 
                     23: <PRE>
                     24: #ifndef HTFTPDIR_H
                     25: #define HTFTPDIR_H
                     26: 
                     27: #include "HTStream.h"
                     28: #include "HTFTP.h"
                     29: 
2.6     ! vbancrof   30: #ifdef __cplusplus
        !            31: extern "C" { 
        !            32: #endif 
        !            33: 
2.1       frystyk    34: extern HTStream * HTFTPDir_new (HTRequest *    request,
                     35:                                FTPServerType   server,
                     36:                                char            list);
2.6     ! vbancrof   37: 
        !            38: #ifdef __cplusplus
        !            39: }
2.1       frystyk    40: #endif
                     41: 
2.6     ! vbancrof   42: #endif  /* HTFTPDIR_H */
2.1       frystyk    43: </PRE>
2.3       frystyk    44: 
                     45: <HR>
                     46: <ADDRESS>
2.6     ! vbancrof   47: @(#) $Id: HTFTPDir.html,v 2.5 1998/05/14 02:10:27 frystyk Exp $
2.3       frystyk    48: </ADDRESS>
2.1       frystyk    49: </BODY>
                     50: </HTML>

Webmaster