[FASTFAT]
[reactos.git] / reactos / drivers / filesystems / fastfat / string.c
index e6fe6e5..6a8f65a 100644 (file)
@@ -9,15 +9,18 @@
 
 /* INCLUDES *****************************************************************/
 
-#define NDEBUG
 #include "vfat.h"
 
+#define NDEBUG
+#include <debug.h>
+
 /* FUNCTIONS ****************************************************************/
 
 const WCHAR *long_illegals = L"\"*\\<>/?:|";
 
 BOOLEAN
-vfatIsLongIllegal(WCHAR c)
+vfatIsLongIllegal(
+    WCHAR c)
 {
-  return wcschr(long_illegals, c) ? TRUE : FALSE;
+    return wcschr(long_illegals, c) ? TRUE : FALSE;
 }