rpm  4.15.1
rpmurl.h
Go to the documentation of this file.
1 #ifndef H_RPMURL
2 #define H_RPMURL
3 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
17 typedef enum urltype_e {
21  URL_IS_FTP = 3,
25 } urltype;
26 
32 urltype urlIsURL(const char * url);
33 
40 urltype urlPath(const char * url, const char ** pathp);
41 
48 int urlGetFile(const char * url, const char * dest);
49 
50 #ifdef __cplusplus
51 }
52 #endif
53 
54 #endif /* H_RPMURL */
urltype urlPath(const char *url, const char **pathp)
Return path component of URL.
urltype urlIsURL(const char *url)
Return type of URL.
enum urltype_e urltype
Supported URL types.
urltype_e
Supported URL types.
Definition: rpmurl.h:17
int urlGetFile(const char *url, const char *dest)
Copy data from URL to local file.