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