]> Pileus Git - ~andy/fetchmail/blob - socket.h
11d9e29676e2c59b239a8b5726acb6598ac2bc78
[~andy/fetchmail] / socket.h
1 /*
2  * socket.h -- declarations for socket library functions
3  *
4  * For license terms, see the file COPYING in this directory.
5  */
6
7 #ifndef SOCKET__
8 #define SOCKET__
9
10 /* Create a new client socket; returns (FILE *)NULL on error */
11 FILE *sockopen(char *host, int clientPort);
12
13 #endif /* SOCKET__ */