[ROSTESTS]
[reactos.git] / reactos / 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 #define NDEBUG
13 #include "vfat.h"
14
15 /* FUNCTIONS ****************************************************************/
16
17 const WCHAR *long_illegals = L"\"*\\<>/?:|";
18
19 BOOLEAN
20 vfatIsLongIllegal(WCHAR c)
21 {
22 return wcschr(long_illegals, c) ? TRUE : FALSE;
23 }