]> git.sesse.net Git - vlc/commitdiff
isblank() is not an ANSI function,it should really be tested for
authorDamien Fouilleul <damienf@videolan.org>
Wed, 13 Jul 2005 14:17:24 +0000 (14:17 +0000)
committerDamien Fouilleul <damienf@videolan.org>
Wed, 13 Jul 2005 14:17:24 +0000 (14:17 +0000)
src/stream_output/acl.c

index 386071baa763da0df8e8c4a62bc6c9d9120d4330..a7d7dcae737c98ca80a584578b74d9dbcebe2954 100644 (file)
@@ -256,6 +256,9 @@ void ACL_Destroy( vlc_acl_t *p_acl )
     }
 }
 
+#ifndef isblank 
+#   define isblank(c) ((c) == ' ' || (c) == '\t')
+#endif
 
 int ACL_LoadFile( vlc_acl_t *p_acl, const char *psz_path )
 {