[NTFS]
[reactos.git] / drivers / filesystems / fastfat / string.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS kernel
4 * FILE: drivers/fs/vfat/string.c
5 * PURPOSE: VFAT Filesystem
6 * PROGRAMMER: Jason Filby (jasonfilby@yahoo.com)
7 *
8 */
9
10 /* INCLUDES *****************************************************************/
11
12 #include "vfat.h"
13
14 #define NDEBUG
15 #include <debug.h>
16
17 /* FUNCTIONS ****************************************************************/
18
19 const WCHAR *long_illegals = L"\"*\\<>/?:|";
20
21 BOOLEAN
22 vfatIsLongIllegal(
23 WCHAR c)
24 {
25 return wcschr(long_illegals, c) ? TRUE : FALSE;
26 }