diff libmpdemux/url.h @ 4119:639b3b47b138

Added a debug function to print the struct's variables.
author bertrand
date Sat, 12 Jan 2002 21:02:00 +0000
parents 5c8a533dfa09
children d2a7fcfeec6f
line wrap: on
line diff
--- a/libmpdemux/url.h	Sat Jan 12 20:47:55 2002 +0000
+++ b/libmpdemux/url.h	Sat Jan 12 21:02:00 2002 +0000
@@ -7,6 +7,8 @@
 #ifndef __URL_H
 #define __URL_H
 
+//#define __URL_DEBUG
+
 typedef struct {
 	char *url;
 	char *protocol;
@@ -24,4 +26,8 @@
 void url_unescape_string(char *outbuf, char *inbuf);
 void url_escape_string(char *outbuf, char *inbuf);
 
-#endif
+#ifndef __URL_DEBUG
+void url_debug(URL_t* url);
+#endif // __URL_DEBUG
+
+#endif // __URL_H