home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / misc / src / rpm / url.h < prev    next >
C/C++ Source or Header  |  1997-09-17  |  321b  |  18 lines

  1. #ifndef H_URL
  2. #define H_URL
  3.  
  4. #include "ftp.h"
  5.  
  6. /* right now, only ftp type URL's are supported */
  7.  
  8. struct urlContext {
  9.     int ftpControl;
  10. };
  11.  
  12. int urlIsURL(char * url);
  13. int urlGetFile(char * url, char * dest);
  14. int urlGetFd(char * url, struct urlContext * context);
  15. int urlFinishedFd(struct urlContext * context);
  16.  
  17. #endif
  18.