2005-08-24 18:29:45 +00:00
|
|
|
/*
|
1999-12-11 21:14:49 +00:00
|
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
|
|
* PROJECT: ReactOS kernel
|
2003-10-11 17:51:56 +00:00
|
|
|
* FILE: drivers/fs/vfat/string.c
|
1999-12-11 21:14:49 +00:00
|
|
|
* PURPOSE: VFAT Filesystem
|
|
|
|
* PROGRAMMER: Jason Filby (jasonfilby@yahoo.com)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* INCLUDES *****************************************************************/
|
|
|
|
|
|
|
|
#define NDEBUG
|
|
|
|
#include "vfat.h"
|
|
|
|
|
|
|
|
/* FUNCTIONS ****************************************************************/
|
|
|
|
|
2003-10-11 17:51:56 +00:00
|
|
|
const WCHAR *long_illegals = L"\"*\\<>/?:|";
|
|
|
|
|
2005-05-08 02:16:32 +00:00
|
|
|
BOOLEAN
|
2003-10-11 17:51:56 +00:00
|
|
|
vfatIsLongIllegal(WCHAR c)
|
|
|
|
{
|
|
|
|
return wcschr(long_illegals, c) ? TRUE : FALSE;
|
|
|
|
}
|