1 /* Finger protocol module for the WWW library */
2 /* History:
3  *      21 Apr 94       Andrew Brooks
4  */
5 
6 #ifndef HTFINGER_H
7 #define HTFINGER_H
8 
9 #include <HTAccess.h>
10 #include <HTAnchor.h>
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 #ifdef GLOBALREF_IS_MACRO
16     extern GLOBALREF (HTProtocol, HTFinger);
17 
18 #else
19     GLOBALREF HTProtocol HTFinger;
20 #endif				/* GLOBALREF_IS_MACRO */
21 
22     extern int HTLoadFinger(const char *arg,
23 			    HTParentAnchor *anAnchor,
24 			    HTFormat format_out,
25 			    HTStream *stream);
26 
27 #ifdef __cplusplus
28 }
29 #endif
30 #endif				/* HTFINGER_H */
31