commit | 1f176e485a71ee95aab6fb201c5d48d28377b7c5 | [log] [tgz] |
---|---|---|
author | Flavio Ceolin <flavio.ceolin@intel.com> | Thu Nov 29 14:12:22 2018 -0800 |
committer | Andrew Boie <andrewboie@gmail.com> | Thu Nov 29 15:28:21 2018 -0800 |
tree | 00ea9f821a9c108338e065a6b134c3297f61cbf6 | |
parent | 1b656beb846a3ae949703193905a5addcdfd3cb6 [diff] |
libc: ctype: Fix isxdigit function The last check was never true since 'a' > 'A'. So, things like isxdigit(Z) would return true. Signed-off-by: Flavio Ceolin <flavio.ceolin@intel.com>