lib/efreet_uri.h

Go to the documentation of this file.
00001 #ifndef EFREET_URI_H
00002 #define EFREET_URI_H
00003 
00015 typedef struct Efreet_Uri Efreet_Uri;
00016 
00022 struct Efreet_Uri
00023 {
00024     const char *protocol;   
00025     const char *hostname;   
00026     const char *path;       
00027 };
00028 
00029 
00030 EAPI const char *efreet_uri_encode(Efreet_Uri *uri);
00031 EAPI Efreet_Uri *efreet_uri_decode(const char *val);
00032 EAPI void        efreet_uri_free(Efreet_Uri *uri);
00033 
00034 
00039 #endif