home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1998 February
/
CHIP_2_98.iso
/
misc
/
src
/
rpm
/
url.h
< prev
next >
Wrap
C/C++ Source or Header
|
1997-09-17
|
321b
|
18 lines
#ifndef H_URL
#define H_URL
#include "ftp.h"
/* right now, only ftp type URL's are supported */
struct urlContext {
int ftpControl;
};
int urlIsURL(char * url);
int urlGetFile(char * url, char * dest);
int urlGetFd(char * url, struct urlContext * context);
int urlFinishedFd(struct urlContext * context);
#endif