
Accidentally verified against a dirty tree. Needs the companion change to libc++ to land upstream before I can submit this. This reverts commit e087eac404b0e30de427392065e2750acf92bd4a. Change-Id: I317ecd0923114f415eaad7603002f77feffb5e3f
87 lines
3.3 KiB
C++
87 lines
3.3 KiB
C++
/*
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* * Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in
|
|
* the documentation and/or other materials provided with the
|
|
* distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*/
|
|
|
|
#include <ctype.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <wchar.h>
|
|
|
|
// TODO: these only work for the ASCII range; rewrite to dlsym icu4c? http://b/14499654
|
|
|
|
int iswalnum(wint_t wc) { return isalnum(wc); }
|
|
int iswalpha(wint_t wc) { return isalpha(wc); }
|
|
int iswblank(wint_t wc) { return isblank(wc); }
|
|
int iswcntrl(wint_t wc) { return iscntrl(wc); }
|
|
int iswdigit(wint_t wc) { return isdigit(wc); }
|
|
int iswgraph(wint_t wc) { return isgraph(wc); }
|
|
int iswlower(wint_t wc) { return islower(wc); }
|
|
int iswprint(wint_t wc) { return isprint(wc); }
|
|
int iswpunct(wint_t wc) { return ispunct(wc); }
|
|
int iswspace(wint_t wc) { return isspace(wc); }
|
|
int iswupper(wint_t wc) { return isupper(wc); }
|
|
int iswxdigit(wint_t wc) { return isxdigit(wc); }
|
|
|
|
int iswctype(wint_t wc, wctype_t char_class) {
|
|
switch (char_class) {
|
|
case WC_TYPE_ALNUM: return iswalnum(wc);
|
|
case WC_TYPE_ALPHA: return iswalpha(wc);
|
|
case WC_TYPE_BLANK: return iswblank(wc);
|
|
case WC_TYPE_CNTRL: return iswcntrl(wc);
|
|
case WC_TYPE_DIGIT: return iswdigit(wc);
|
|
case WC_TYPE_GRAPH: return iswgraph(wc);
|
|
case WC_TYPE_LOWER: return iswlower(wc);
|
|
case WC_TYPE_PRINT: return iswprint(wc);
|
|
case WC_TYPE_PUNCT: return iswpunct(wc);
|
|
case WC_TYPE_SPACE: return iswspace(wc);
|
|
case WC_TYPE_UPPER: return iswupper(wc);
|
|
case WC_TYPE_XDIGIT: return iswxdigit(wc);
|
|
default: return 0;
|
|
}
|
|
}
|
|
|
|
wint_t towlower(wint_t wc) { return tolower(wc); }
|
|
wint_t towupper(wint_t wc) { return toupper(wc); }
|
|
|
|
wctype_t wctype(const char* property) {
|
|
static const char* const properties[WC_TYPE_MAX] = {
|
|
"<invalid>",
|
|
"alnum", "alpha", "blank", "cntrl", "digit", "graph",
|
|
"lower", "print", "punct", "space", "upper", "xdigit"
|
|
};
|
|
for (size_t i = 0; i < WC_TYPE_MAX; ++i) {
|
|
if (!strcmp(properties[i], property)) {
|
|
return static_cast<wctype_t>(i);
|
|
}
|
|
}
|
|
return static_cast<wctype_t>(0);
|
|
}
|
|
|
|
int wcwidth(wchar_t wc) {
|
|
return (wc > 0);
|
|
}
|