diff options
author | Wei Li <weili@chromium.org> | 2016-03-15 13:55:12 -0700 |
---|---|---|
committer | Wei Li <weili@chromium.org> | 2016-03-15 13:55:12 -0700 |
commit | 614d20a64195e64c047432251e3fb3e7b5142425 (patch) | |
tree | 6e23743b19bb501defd07146c3164168a5520908 /core | |
parent | 744da70149c450d2f387a1fa325a3074ac2edb0c (diff) | |
download | pdfium-614d20a64195e64c047432251e3fb3e7b5142425.tar.xz |
Fix CJS_PublicMethods::IsNumber() with unit test and some cleanup
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1797423002 .
Diffstat (limited to 'core')
-rw-r--r-- | core/include/fxcrt/fx_ext.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/core/include/fxcrt/fx_ext.h b/core/include/fxcrt/fx_ext.h index dda6a5c72b..0deb4266c8 100644 --- a/core/include/fxcrt/fx_ext.h +++ b/core/include/fxcrt/fx_ext.h @@ -30,10 +30,10 @@ FX_WCHAR* FXSYS_wcsncpy(FX_WCHAR* dstStr, const FX_WCHAR* srcStr, size_t count); int32_t FXSYS_wcsnicmp(const FX_WCHAR* s1, const FX_WCHAR* s2, size_t count); int32_t FXSYS_strnicmp(const FX_CHAR* s1, const FX_CHAR* s2, size_t count); -inline FX_BOOL FXSYS_islower(int32_t ch) { +inline bool FXSYS_islower(int32_t ch) { return ch >= 'a' && ch <= 'z'; } -inline FX_BOOL FXSYS_isupper(int32_t ch) { +inline bool FXSYS_isupper(int32_t ch) { return ch >= 'A' && ch <= 'Z'; } inline int32_t FXSYS_tolower(int32_t ch) { @@ -42,13 +42,13 @@ inline int32_t FXSYS_tolower(int32_t ch) { inline int32_t FXSYS_toupper(int32_t ch) { return ch < 'a' || ch > 'z' ? ch : (ch - 0x20); } -inline FX_BOOL FXSYS_iswalpha(wchar_t wch) { +inline bool FXSYS_iswalpha(wchar_t wch) { return (wch >= L'A' && wch <= L'Z') || (wch >= L'a' && wch <= L'z'); } -inline FX_BOOL FXSYS_iswdigit(wchar_t wch) { +inline bool FXSYS_iswdigit(wchar_t wch) { return wch >= L'0' && wch <= L'9'; } -inline FX_BOOL FXSYS_iswalnum(wchar_t wch) { +inline bool FXSYS_iswalnum(wchar_t wch) { return FXSYS_iswalpha(wch) || FXSYS_iswdigit(wch); } |