/build/buildd/efreet-0.5.0.49898/src/lib/efreet_uri.h
Go to the documentation of this file.
00001 /* vim: set sw=4 ts=4 sts=4 et: */ 00002 #ifndef EFREET_URI_H 00003 #define EFREET_URI_H 00004 00016 typedef struct Efreet_Uri Efreet_Uri; 00017 00023 struct Efreet_Uri 00024 { 00025 const char *protocol; 00026 const char *hostname; 00027 const char *path; 00028 }; 00029 00030 00031 EAPI const char *efreet_uri_encode(Efreet_Uri *uri); 00032 EAPI Efreet_Uri *efreet_uri_decode(const char *val); 00033 EAPI void efreet_uri_free(Efreet_Uri *uri); 00034 00035 00040 #endif