diff stream/url.h @ 23689:3f0d00abc073

Do not use leading underscores in multiple inclusion guards, they are reserved.
author diego
date Mon, 02 Jul 2007 22:34:45 +0000
parents 720206eef78b
children 4129c8cfa742
line wrap: on
line diff
--- a/stream/url.h	Mon Jul 02 22:02:59 2007 +0000
+++ b/stream/url.h	Mon Jul 02 22:34:45 2007 +0000
@@ -4,10 +4,10 @@
  * (C) 2001, MPlayer team.
  */
 
-#ifndef __URL_H
-#define __URL_H
+#ifndef URL_H
+#define URL_H
 
-//#define __URL_DEBUG
+//#define URL_DEBUG
 
 typedef struct {
 	char *url;
@@ -26,8 +26,8 @@
 void url_unescape_string(char *outbuf, const char *inbuf);
 void url_escape_string(char *outbuf, const char *inbuf);
 
-#ifdef __URL_DEBUG
+#ifdef URL_DEBUG
 void url_debug(const URL_t* url);
-#endif // __URL_DEBUG
+#endif /* URL_DEBUG */
 
-#endif // __URL_H
+#endif /* URL_H */