Functions
FREE_STRING()
#define FREE_STRING(__str) if (__str) { g_free (__str); __str = NULL; }
FREE_OBJECT()
#define FREE_OBJECT(__obj) if (__obj) { g_object_unref (__obj); __obj = NULL; }
SET_STRING()
#define SET_STRING(__str) (__str == NULL ? NULL : g_strdup (__str))
date_parse_RFC822 ()
time_t
date_parse_RFC822 (const gchar *date
);
date_parse_ISO8601 ()
time_t
date_parse_ISO8601 (const gchar *date
);
date_to_ISO8601 ()
gchar *
date_to_ISO8601 (time_t date
);
detect_internet_address ()
GInetAddress *
detect_internet_address ();