diff options
| author | Elliott Hughes <enh@google.com> | 2014-04-15 19:19:48 +0000 |
|---|---|---|
| committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-04-15 19:19:48 +0000 |
| commit | 073ea10156d62087a67a066527c92a1dbb92d650 (patch) | |
| tree | ebd30077b1653e03543662c2c6986a681c2eea72 /libc/bionic/wchar.cpp | |
| parent | a13c7fd3b34c1deb6592a75e79df9fe44dbf4d88 (diff) | |
| parent | 40b05791278f9ac6ff842670e80899c7cd15276f (diff) | |
| download | bionic-073ea10156d62087a67a066527c92a1dbb92d650.zip bionic-073ea10156d62087a67a066527c92a1dbb92d650.tar.gz bionic-073ea10156d62087a67a066527c92a1dbb92d650.tar.bz2 | |
Merge "Add iswblank for libcxx."
Diffstat (limited to 'libc/bionic/wchar.cpp')
| -rw-r--r-- | libc/bionic/wchar.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/bionic/wchar.cpp b/libc/bionic/wchar.cpp index 8d56458..8367817 100644 --- a/libc/bionic/wchar.cpp +++ b/libc/bionic/wchar.cpp @@ -97,6 +97,7 @@ int swscanf(const wchar_t* /*s*/, const wchar_t* /*format*/, ... ) { 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); } |
