~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to system/include/libcxx/support/win32/locale_win32.h

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-09-20 22:44:35 UTC
  • mfrom: (4.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20130920224435-apuwj4fsl3fqv1a6
Tags: 1.5.6~20130920~6010666-1
* New snapshot release
* Update the list of supported architectures to the same as libv8
  (Closes: #723129)
* emlibtool has been removed from upstream.
* Fix warning syntax-error-in-dep5-copyright
* Refresh of the patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
#define strtoull_l _strtoui64_l
66
66
// FIXME: current msvcrt does not know about long double
67
67
#define strtold_l _strtod_l
68
 
#define islower_l _islower_l
69
 
#define isupper_l _isupper_l
 
68
 
 
69
inline _LIBCPP_INLINE_VISIBILITY
 
70
int
 
71
islower_l(int c, _locale_t loc)
 
72
{
 
73
 return _islower_l((int)c, loc);
 
74
}
 
75
 
 
76
inline _LIBCPP_INLINE_VISIBILITY
 
77
int
 
78
isupper_l(int c, _locale_t loc)
 
79
{
 
80
 return _isupper_l((int)c, loc);
 
81
}
 
82
 
70
83
#define isdigit_l _isdigit_l
71
84
#define isxdigit_l _isxdigit_l
72
85
#define strcoll_l _strcoll_l