Sync with trunk r63430.

svn path=/branches/shell-experiments/; revision=63433
This commit is contained in:
David Quintana 2014-05-24 20:29:19 +00:00
commit d5e23caf7a
136 changed files with 6159 additions and 3600 deletions

View file

@ -614,6 +614,15 @@ int __cdecl _isctype (int c, int ctypeFlags)
{
return _isctype_l(c, ctypeFlags, NULL);
}
/*********************************************************************
* _isleadbyte_l (MSVCRT.@)
*/
int __cdecl _isleadbyte_l(int c, _locale_t locale)
{
return _isctype_l( c, _LEADBYTE, locale );
}
#endif /* _LIBCNT_ */
/*